aboutsummaryrefslogtreecommitdiff
path: root/structopt/examples/negative_flag.rs
blob: b178bf5ae5a94a0ee3d66af2455c517bef250436 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! How to add `no-thing` flag which is `true` by default and
//! `false` if passed.

use structopt::StructOpt;

#[derive(Debug, StructOpt)]
struct Opt {
    #[structopt(long = "no-verbose", parse(from_flag = std::ops::Not::not))]
    verbose: bool,
}

fn main() {
    let cmd = Opt::from_args();
    println!("{:#?}", cmd);
}