Lines Matching refs:clap
1066 pub use clap;
1077 fn clap<'a, 'b>() -> clap::App<'a, 'b>; in clap() method
1082 fn from_clap(matches: &clap::ArgMatches<'_>) -> Self; in from_clap()
1090 Self::from_clap(&Self::clap().get_matches()) in from_args()
1096 fn from_args_safe() -> Result<Self, clap::Error> in from_args_safe()
1100 Self::clap() in from_args_safe()
1116 Self::from_clap(&Self::clap().get_matches_from(iter)) in from_iter()
1127 fn from_iter_safe<I>(iter: I) -> Result<Self, clap::Error> in from_iter_safe()
1133 Ok(Self::from_clap(&Self::clap().get_matches_from_safe(iter)?)) in from_iter_safe()
1140 fn augment_clap<'a, 'b>(app: clap::App<'a, 'b>) -> clap::App<'a, 'b> { in augment_clap()
1148 fn from_subcommand<'a, 'b>(_sub: (&'b str, Option<&'b clap::ArgMatches<'a>>)) -> Option<Self> in from_subcommand()
1157 fn clap<'a, 'b>() -> clap::App<'a, 'b> { in clap() method
1158 <T as StructOpt>::clap() in clap()
1161 fn from_clap(matches: &clap::ArgMatches<'_>) -> Self { in from_clap()
1173 fn from_subcommand<'a, 'b>(sub: (&'b str, Option<&'b clap::ArgMatches<'a>>)) -> Option<Self> { in from_subcommand()
1178 fn augment_clap<'a, 'b>(app: clap::App<'a, 'b>) -> clap::App<'a, 'b> { in augment_clap()