Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/third_party/rust/clap/src/bin/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 922 B image not shown  

Quelle  stdio-fixture.rs   Sprache: unbekannt

 
fn main() {
    #[allow(unused_mut)]
    let mut cmd = clap::Command::new("stdio-fixture")
        .version("1.0")
        .long_version("1.0 - a2132c")
        .arg_required_else_help(true)
        .subcommand(clap::Command::new("more"))
        .arg(
            clap::Arg::new("verbose")
                .long("verbose")
                .help("log")
                .action(clap::ArgAction::SetTrue)
                .long_help("more log"),
        );
    #[cfg(feature = "color")]
    {
        use clap::builder::styling;
        const STYLES: styling::Styles = styling::Styles::styled()
            .header(styling::AnsiColor::Green.on_default().bold())
            .usage(styling::AnsiColor::Green.on_default().bold())
            .literal(styling::AnsiColor::Blue.on_default().bold())
            .placeholder(styling::AnsiColor::Cyan.on_default());
        cmd = cmd.styles(STYLES);
    }
    cmd.get_matches();
}

[ Dauer der Verarbeitung: 0.13 Sekunden  (vorverarbeitet)  ]