使用 required_unless 和 conflicts_with 的 structopt 的 proc-macro 恐慌
proc-macro panic with structopt using required_unless and conflicts_with
我想有两个相互冲突的选项,但其中一个必须是必需的:
#[macro_use]
extern crate structopt;
use structopt::StructOpt;
#[derive(StructOpt)]
struct Opt {
#[structopt(
long = "foo",
required_unless = "bar",
conflicts_with = "bar",
)]
foo: Option<String>,
#[structopt(
long = "bar",
required_unless = "foo"),
]
bar: Option<String>,
}
fn main() {
let args = Opt::from_args();
println!("{:?}", args.foo);
println!("{:?}", args.bar);
}
这是编译器 (v1.28.0) 抱怨的地方:
error: proc-macro derive panicked
--> src/main.rs:6:10
|
6 | #[derive(StructOpt)]
| ^^^^^^^^^
|
= help: message: invalid structopt syntax: attr
#[stuff(...),]
末尾带有额外的 ,
不是有效的属性语法。如果您更正此拼写错误,您的代码将正常工作。
#[structopt(
long = "bar",
required_unless = "foo", // no `)` on this line.
)] // put `)` on this line, no `,` after it
bar: Option<String>,
我想有两个相互冲突的选项,但其中一个必须是必需的:
#[macro_use]
extern crate structopt;
use structopt::StructOpt;
#[derive(StructOpt)]
struct Opt {
#[structopt(
long = "foo",
required_unless = "bar",
conflicts_with = "bar",
)]
foo: Option<String>,
#[structopt(
long = "bar",
required_unless = "foo"),
]
bar: Option<String>,
}
fn main() {
let args = Opt::from_args();
println!("{:?}", args.foo);
println!("{:?}", args.bar);
}
这是编译器 (v1.28.0) 抱怨的地方:
error: proc-macro derive panicked
--> src/main.rs:6:10
|
6 | #[derive(StructOpt)]
| ^^^^^^^^^
|
= help: message: invalid structopt syntax: attr
#[stuff(...),]
末尾带有额外的 ,
不是有效的属性语法。如果您更正此拼写错误,您的代码将正常工作。
#[structopt(
long = "bar",
required_unless = "foo", // no `)` on this line.
)] // put `)` on this line, no `,` after it
bar: Option<String>,