Home
last modified time | relevance | path

Searched defs:MatchedArg (Results 1 – 6 of 6) sorted by relevance

/external/rust/crates/clap/3.2.23/src/parser/matches/
Dmatched_arg.rs16 pub(crate) struct MatchedArg { struct
26 impl MatchedArg { argument
196 impl PartialEq for MatchedArg { implementation
198 let MatchedArg { in eq() localVariable
207 let MatchedArg { in eq() localVariable
225 impl Eq for MatchedArg {} implementation
Darg_matches.rs1328 fn try_get_arg(&self, arg: &Id) -> Result<Option<&MatchedArg>, MatchesError> { in try_get_arg()
1337 ) -> Result<Option<&MatchedArg>, MatchesError> { in try_get_arg_t()
1352 ) -> Result<Option<MatchedArg>, MatchesError> { in try_remove_arg_t()
1373 arg: &MatchedArg, in verify_arg_t()
1410 fn get_arg(&self, arg: &Id) -> Option<&MatchedArg> { in get_arg()
/external/rust/crates/clap/src/parser/matches/
Dmatched_arg.rs16 pub(crate) struct MatchedArg { struct
25 impl MatchedArg { argument
184 impl PartialEq for MatchedArg { implementation
186 let MatchedArg { in eq() localVariable
194 let MatchedArg { in eq() localVariable
210 impl Eq for MatchedArg {} implementation
Darg_matches.rs1223 fn try_get_arg(&self, arg: &str) -> Result<Option<&MatchedArg>, MatchesError> { in try_get_arg()
1232 ) -> Result<Option<&MatchedArg>, MatchesError> { in try_get_arg_t()
1247 ) -> Result<Option<MatchedArg>, MatchesError> { in try_remove_arg_t()
1268 arg: &MatchedArg, in verify_arg_t()
1299 fn get_arg<'s>(&'s self, arg: &str) -> Option<&'s MatchedArg> { in get_arg()
/external/rust/crates/clap/3.2.23/src/parser/
Darg_matcher.rs66 vals_map: &mut HashMap<Id, MatchedArg>, in fill_in_global_values() argument
103 pub(crate) fn get(&self, arg: &Id) -> Option<&MatchedArg> { in get()
107 pub(crate) fn get_mut(&mut self, arg: &Id) -> Option<&mut MatchedArg> { in get_mut()
119 pub(crate) fn arg_ids(&self) -> indexmap::map::Keys<Id, MatchedArg> { in arg_ids() argument
123 pub(crate) fn entry(&mut self, arg: &Id) -> indexmap::map::Entry<Id, MatchedArg> { in entry() argument
135 pub(crate) fn iter(&self) -> indexmap::map::Iter<Id, MatchedArg> { in iter() argument
/external/rust/crates/clap/src/parser/
Darg_matcher.rs59 vals_map: &mut FlatMap<Id, MatchedArg>, in fill_in_global_values() argument
96 pub(crate) fn get(&self, arg: &Id) -> Option<&MatchedArg> { in get()
100 pub(crate) fn get_mut(&mut self, arg: &Id) -> Option<&mut MatchedArg> { in get_mut()
116 pub(crate) fn args(&self) -> crate::util::flat_map::Iter<'_, Id, MatchedArg> { in args() argument
120 pub(crate) fn entry(&mut self, arg: Id) -> crate::util::Entry<Id, MatchedArg> { in entry() argument