clap/examples/group.rs

41 lines
1.1 KiB
Rust
Raw Normal View History

2018-04-18 16:53:51 +00:00
// A functional translation of the example at
// https://docs.rs/clap/2.31.2/clap/struct.App.html#method.group
#[macro_use]
extern crate structopt;
use structopt::StructOpt;
use structopt::clap::ArgGroup;
// This function is not needed, we can insert everything in the group
// attribute, but, as it might be long, using a function is more
// lisible.
fn vers_arg_group() -> ArgGroup<'static> {
// As the attributes of the struct are executed before the struct
// fields, we can't use .args(...), but we can use the group
// attribute on the fields.
2018-05-21 14:54:22 +00:00
ArgGroup::with_name("vers").required(true)
2018-04-18 16:53:51 +00:00
}
#[derive(StructOpt, Debug)]
#[structopt(raw(group = "vers_arg_group()"))]
struct Opt {
/// set the version manually
#[structopt(long = "set-ver", group = "vers")]
set_ver: Option<String>,
/// auto increase major
#[structopt(long = "major", group = "vers")]
major: bool,
/// auto increase minor
#[structopt(long = "minor", group = "vers")]
minor: bool,
/// auto increase patch
#[structopt(long = "patch", group = "vers")]
patch: bool,
}
fn main() {
let opt = Opt::from_args();
println!("{:?}", opt);
}