clap/examples/derive_ref/custom_bool.md
Ed Page cf93d7c75a docs: Fix example output
How did #3112 get merged?
2021-12-09 10:26:01 -06:00

929 B

Jump to source

Example of overriding the magic bool behavior

$ custom_bool --help
clap [..]

A simple to use, efficient, and full-featured Command Line Argument Parser

USAGE:
    custom_bool[EXE] [OPTIONS] --foo <FOO> <BOOM>

ARGS:
    <BOOM>    

OPTIONS:
        --bar <BAR>    [default: false]
        --foo <FOO>    
    -h, --help         Print help information
    -V, --version      Print version information
$ custom_bool
? failed
error: The following required arguments were not provided:
    --foo <FOO>
    <BOOM>

USAGE:
    custom_bool[EXE] [OPTIONS] --foo <FOO> <BOOM>

For more information try --help
$ custom_bool --foo true false
[examples/derive_ref/custom_bool.rs:31] opt = Opt {
    foo: true,
    bar: false,
    boom: false,
}
$ custom_bool --foo true --bar true false
[examples/derive_ref/custom_bool.rs:31] opt = Opt {
    foo: true,
    bar: true,
    boom: false,
}