Searched defs:AnyArg (Results 1 – 3 of 3) sorted by relevance
/external/rust/crates/clap/src/ |
D | errors.rs | 412 arg: &AnyArg, in argument_conflict() 450 pub fn empty_value<U>(arg: &AnyArg, usage: U, color: ColorWhen) -> Self in empty_value() 478 arg: &AnyArg, in invalid_value() 663 pub fn too_many_values<V, U>(val: V, arg: &AnyArg, usage: U, color: ColorWhen) -> Self in too_many_values() 692 arg: &AnyArg, in too_few_values() 725 pub fn value_validation(arg: Option<&AnyArg>, err: String, color: ColorWhen) -> Self { in value_validation() 754 arg: &AnyArg, in wrong_number_of_values() 789 pub fn unexpected_multiple_usage<U>(arg: &AnyArg, usage: U, color: ColorWhen) -> Self in unexpected_multiple_usage()
|
/external/rust/crates/clap/src/app/ |
D | validator.rs | 508 fn validate_arg_conflicts(&self, a: &AnyArg, matcher: &ArgMatcher) -> Option<bool> { in validate_arg_conflicts() 523 fn validate_required_unless(&self, a: &AnyArg, matcher: &ArgMatcher) -> Option<bool> { in validate_required_unless() 578 fn is_missing_required_ok(&self, a: &AnyArg, matcher: &ArgMatcher) -> bool { in is_missing_required_ok()
|
/external/rust/crates/clap/src/args/ |
D | any_arg.rs | 12 pub trait AnyArg<'n, 'e>: std_fmt::Display { interface 46 impl<'n, 'e, 'z, T: ?Sized> AnyArg<'n, 'e> for &'z T impl
|