mirror of
https://github.com/clap-rs/clap
synced 2024-11-10 23:04:23 +00:00
30 lines
690 B
Rust
30 lines
690 B
Rust
|
// Copyright 2018 Guillaume Pinot (@TeXitoi) <texitoi@texitoi.eu>
|
||
|
//
|
||
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
||
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
||
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
||
|
// option. This file may not be copied, modified, or distributed
|
||
|
// except according to those terms.
|
||
|
|
||
|
use clap::Clap;
|
||
|
|
||
|
#[derive(Clap, Debug)]
|
||
|
struct DaemonOpts {
|
||
|
#[clap(short)]
|
||
|
user: String,
|
||
|
#[clap(short)]
|
||
|
group: String,
|
||
|
}
|
||
|
|
||
|
#[derive(Clap, Debug)]
|
||
|
#[clap(name = "basic")]
|
||
|
struct Opt {
|
||
|
#[clap(short, flatten)]
|
||
|
opts: DaemonOpts,
|
||
|
}
|
||
|
|
||
|
fn main() {
|
||
|
let opt = Opt::parse();
|
||
|
println!("{:?}", opt);
|
||
|
}
|