1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
use clap::{arg, Args as _, Command, FromArgMatches as _, Parser};

#[derive(Parser, Debug)]
struct DerivedArgs {
    #[clap(short, long, action)]
    derived: bool,
}

fn main() {
    let cli = Command::new("CLI").arg(arg!(-b - -built).action(clap::ArgAction::SetTrue));
    // Augment built args with derived args
    let cli = DerivedArgs::augment_args(cli);

    let matches = cli.get_matches();
    println!(
        "Value of built: {:?}",
        *matches.get_one::<bool>("built").unwrap()
    );
    println!(
        "Value of derived via ArgMatches: {:?}",
        *matches.get_one::<bool>("derived").unwrap()
    );

    // Since DerivedArgs implements FromArgMatches, we can extract it from the unstructured ArgMatches.
    // This is the main benefit of using derived arguments.
    let derived_matches = DerivedArgs::from_arg_matches(&matches)
        .map_err(|err| err.exit())
        .unwrap();
    println!("Value of derived: {:#?}", derived_matches);
}