1 2 3 4 5 6 7 8 9
use clap::Args; #[derive(Debug, Clone, Args)] pub(crate) struct ListCommandsArgs { #[arg(short = 'F', allow_hyphen_values = true)] pub(crate) format: Option<String>, #[arg(allow_hyphen_values = true)] pub(crate) command: Option<String>, }