Home
last modified time | relevance | path

Searched refs:AnyValueId (Results 1 – 9 of 9) sorted by relevance

/third_party/rust/crates/clap/src/parser/matches/
Dany_value.rs6 id: AnyValueId,
11 let id = AnyValueId::of::<V>(); in new()
30 pub(crate) fn type_id(&self) -> AnyValueId { in type_id() argument
42 pub struct AnyValueId { struct
48 impl AnyValueId { implementation
58 impl PartialEq for AnyValueId { implementation
64 impl Eq for AnyValueId {} implementation
66 impl PartialOrd for AnyValueId { implementation
72 impl Ord for AnyValueId { implementation
78 impl std::hash::Hash for AnyValueId { implementation
[all …]
Dmatched_arg.rs10 use crate::parser::AnyValueId;
19 type_id: Option<AnyValueId>,
169 pub(crate) fn type_id(&self) -> Option<AnyValueId> { in type_id() argument
173 pub(crate) fn infer_type_id(&self, expected: AnyValueId) -> AnyValueId { in infer_type_id() argument
Dmod.rs6 pub use any_value::AnyValueId;
Darg_matches.rs12 use crate::parser::AnyValueId;
1256 let expected = AnyValueId::of::<T>(); in try_remove_arg_t()
1270 let expected = AnyValueId::of::<T>(); in verify_arg_t()
/third_party/rust/crates/clap/src/builder/
Daction.rs329 pub(crate) fn value_type_id(&self) -> Option<crate::parser::AnyValueId> { in value_type_id() argument
330 use crate::parser::AnyValueId; in value_type_id()
337 Self::Count => Some(AnyValueId::of::<CountType>()), in value_type_id()
Dvalue_parser.rs5 use crate::parser::AnyValueId;
235 pub fn type_id(&self) -> AnyValueId { in type_id() argument
587 fn type_id(&self) -> AnyValueId; in type_id() argument
621 fn type_id(&self) -> AnyValueId { in type_id() argument
622 AnyValueId::of::<T>() in type_id()
Darg.rs3879 if type_id == crate::parser::AnyValueId::of::<std::path::PathBuf>() { in get_value_hint()
/third_party/rust/crates/clap/src/parser/
Derror.rs10 actual: super::AnyValueId,
12 expected: super::AnyValueId,
Dmod.rs14 pub(crate) use self::matches::AnyValueId;