Lines Matching defs:Args
21 /// See also [`Subcommand`] and [`Args`].
175 /// Derived as part of [`Parser`], [`Args`], and [`Subcommand`].
261 /// `Args`.
262 /// - `Variant(ChildArgs)`: No attribute is used with enum variants that impl `Args`.
273 /// struct Args {
278 /// #[derive(clap::Args)]
284 pub trait Args: FromArgMatches + Sized {
319 /// struct Args {
361 /// struct Args {
447 impl<T: Args> Args for Box<T> {
449 <T as Args>::augment_args(cmd)
452 <T as Args>::augment_args_for_update(cmd)