Lines Matching refs:ArgAction
3 use clap::{arg, Arg, ArgAction, Command};
55 .action(ArgAction::SetTrue) in hide_short_args()
60 .action(ArgAction::SetTrue) in hide_short_args()
98 .action(ArgAction::SetTrue) in hide_short_args_long_help()
103 .action(ArgAction::SetTrue) in hide_short_args_long_help()
137 .action(ArgAction::SetTrue) in hide_long_args()
142 .action(ArgAction::SetTrue) in hide_long_args()
172 .action(ArgAction::SetTrue) in hide_long_args_short_help()
177 .action(ArgAction::SetTrue) in hide_long_args_short_help()
235 .arg(arg!(-h - -help).action(ArgAction::Help).hide(true)) in hide_opt_args_only()
255 .arg(arg!(-h - -help).action(ArgAction::Help).hide(true)) in hide_pos_args_only()
275 .arg(arg!(-h - -help).action(ArgAction::Help).hide(true)) in hide_subcmds_only()