mirror of
https://github.com/clap-rs/clap
synced 2024-12-16 15:52:44 +00:00
42 lines
1.2 KiB
Rust
42 lines
1.2 KiB
Rust
|
// 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.
|
||
|
ArgGroup::with_name("vers")
|
||
|
.required(true)
|
||
|
}
|
||
|
|
||
|
#[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);
|
||
|
}
|