1 2 3 4 5 6 7 8 9 10 11
use clap::{self, Parser}; #[derive(Parser)] #[command(version, about, long_about = None)] pub struct CliConfig { #[arg(long)] pub function_name: String, #[arg(short, action = clap::ArgAction::Count)] pub verbosity: u8, }