如何使用 StructOpt 将参数解析为 Vec 而不将其视为多个参数?
How to use StructOpt to parse an argument into a Vec without it being treated as multiple arguments?
我有这个代码:
#[derive(StructOpt)]
pub struct Opt {
/// Data stream to send to the device
#[structopt(help = "Data to send", parse(try_from_str = "parse_hex"))]
data: Vec<u8>,
}
fn parse_hex(s: &str) -> Result<u8, ParseIntError> {
u8::from_str_radix(s, 16)
}
这适用于 myexe AA BB
,但我需要将 myexe AABB
作为输入。
有没有办法将自定义解析器传递给 structopt
以将 AABB
解析为 Vec<u8>
?我只需要解析第二种形式(没有 space)。
我知道我可以分两步完成(存储到结构中的 String
然后解析它,但我喜欢我的 Opt
对所有内容都有最终类型的想法。
我试过这样的解析器:
fn parse_hex_string(s: &str) -> Result<Vec<u8>, ParseIntError>
StructOpt
宏因类型不匹配而恐慌,因为它似乎产生了 Vec<Vec<u8>>
。
StructOpt 区分 Vec<T>
将始终映射到多个参数:
Vec<T: FromStr>
list of options or the other positional arguments
.takes_value(true).multiple(true)
这意味着您需要一种类型来表示您的数据。将您的 Vec<u8>
替换为新类型:
#[derive(Debug)]
struct HexData(Vec<u8>);
#[derive(Debug, StructOpt)]
pub struct Opt {
/// Data stream to send to the device
#[structopt(help = "Data to send")]
data: HexData,
}
这会导致错误:
error[E0277]: the trait bound `HexData: std::str::FromStr` is not satisfied
--> src/main.rs:16:10
|
16 | #[derive(StructOpt)]
| ^^^^^^^^^ the trait `std::str::FromStr` is not implemented for `HexData`
|
= note: required by `std::str::FromStr::from_str`
让我们实施 FromStr
:
impl FromStr for HexData {
type Err = hex::FromHexError;
fn from_str(s: &str) -> Result<Self, Self::Err> {
hex::decode(s).map(HexData)
}
}
有效:
$ cargo run -- DEADBEEF
HexData([222, 173, 190, 239])
$ cargo run -- ZZZZ
error: Invalid value for '<data>': Invalid character 'Z' at position 0
我有这个代码:
#[derive(StructOpt)]
pub struct Opt {
/// Data stream to send to the device
#[structopt(help = "Data to send", parse(try_from_str = "parse_hex"))]
data: Vec<u8>,
}
fn parse_hex(s: &str) -> Result<u8, ParseIntError> {
u8::from_str_radix(s, 16)
}
这适用于 myexe AA BB
,但我需要将 myexe AABB
作为输入。
有没有办法将自定义解析器传递给 structopt
以将 AABB
解析为 Vec<u8>
?我只需要解析第二种形式(没有 space)。
我知道我可以分两步完成(存储到结构中的 String
然后解析它,但我喜欢我的 Opt
对所有内容都有最终类型的想法。
我试过这样的解析器:
fn parse_hex_string(s: &str) -> Result<Vec<u8>, ParseIntError>
StructOpt
宏因类型不匹配而恐慌,因为它似乎产生了 Vec<Vec<u8>>
。
StructOpt 区分 Vec<T>
将始终映射到多个参数:
Vec<T: FromStr>
list of options or the other positional arguments
.takes_value(true).multiple(true)
这意味着您需要一种类型来表示您的数据。将您的 Vec<u8>
替换为新类型:
#[derive(Debug)]
struct HexData(Vec<u8>);
#[derive(Debug, StructOpt)]
pub struct Opt {
/// Data stream to send to the device
#[structopt(help = "Data to send")]
data: HexData,
}
这会导致错误:
error[E0277]: the trait bound `HexData: std::str::FromStr` is not satisfied
--> src/main.rs:16:10
|
16 | #[derive(StructOpt)]
| ^^^^^^^^^ the trait `std::str::FromStr` is not implemented for `HexData`
|
= note: required by `std::str::FromStr::from_str`
让我们实施 FromStr
:
impl FromStr for HexData {
type Err = hex::FromHexError;
fn from_str(s: &str) -> Result<Self, Self::Err> {
hex::decode(s).map(HexData)
}
}
有效:
$ cargo run -- DEADBEEF
HexData([222, 173, 190, 239])
$ cargo run -- ZZZZ
error: Invalid value for '<data>': Invalid character 'Z' at position 0