mirror of
https://github.com/clap-rs/clap
synced 2024-12-13 22:32:33 +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.
28 lines
494 B
Rust
28 lines
494 B
Rust
use clap::{ArgEnum, Parser};
|
|
|
|
#[derive(Parser)]
|
|
#[clap(author, version, about, long_about = None)]
|
|
struct Cli {
|
|
/// What mode to run the program in
|
|
#[clap(arg_enum)]
|
|
mode: Mode,
|
|
}
|
|
|
|
#[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, ArgEnum)]
|
|
enum Mode {
|
|
Fast,
|
|
Slow,
|
|
}
|
|
|
|
fn main() {
|
|
let cli = Cli::parse();
|
|
|
|
match cli.mode {
|
|
Mode::Fast => {
|
|
println!("Hare");
|
|
}
|
|
Mode::Slow => {
|
|
println!("Tortoise");
|
|
}
|
|
}
|
|
}
|