mirror of
https://github.com/clap-rs/clap
synced 2024-11-10 14:54:15 +00:00
4b51b8e253
`#[clap(about)]` only overrides `about`. If the doc comment also sets `long_about`, it won't be overridden. This change is to help raise visibility of reseting `long_about` in these cases.
27 lines
708 B
Rust
27 lines
708 B
Rust
// Note: this requires the `derive` feature
|
|
|
|
use clap::Parser;
|
|
|
|
#[derive(Parser)]
|
|
#[clap(author, version, about, long_about = None)]
|
|
struct Cli {
|
|
#[clap(short = 'f')]
|
|
eff: bool,
|
|
|
|
#[clap(short = 'p', value_name = "PEAR")]
|
|
pea: Option<String>,
|
|
|
|
#[clap(last = true)]
|
|
slop: Vec<String>,
|
|
}
|
|
|
|
fn main() {
|
|
let args = Cli::parse();
|
|
|
|
// This is what will happen with `myprog -f -p=bob -- sloppy slop slop`...
|
|
println!("-f used: {:?}", args.eff); // -f used: true
|
|
println!("-p's value: {:?}", args.pea); // -p's value: Some("bob")
|
|
println!("'slops' values: {:?}", args.slop); // 'slops' values: Some(["sloppy", "slop", "slop"])
|
|
|
|
// Continued program logic goes here...
|
|
}
|