Lines Matching refs:matches
82 let mut matches = <Self as CommandFactory>::command().get_matches(); in parse() localVariable
83 let res = <Self as FromArgMatches>::from_arg_matches_mut(&mut matches) in parse()
97 let mut matches = ok!(<Self as CommandFactory>::command().try_get_matches()); in try_parse() localVariable
98 <Self as FromArgMatches>::from_arg_matches_mut(&mut matches).map_err(format_error::<Self>) in try_parse()
107 let mut matches = <Self as CommandFactory>::command().get_matches_from(itr); in parse_from() localVariable
108 let res = <Self as FromArgMatches>::from_arg_matches_mut(&mut matches) in parse_from()
126 let mut matches = ok!(<Self as CommandFactory>::command().try_get_matches_from(itr)); in try_parse_from() localVariable
127 <Self as FromArgMatches>::from_arg_matches_mut(&mut matches).map_err(format_error::<Self>) in try_parse_from()
136 let mut matches = <Self as CommandFactory>::command_for_update().get_matches_from(itr); in update_from() localVariable
137 let res = <Self as FromArgMatches>::update_from_arg_matches_mut(self, &mut matches) in update_from()
152 let mut matches = in try_update_from() localVariable
154 <Self as FromArgMatches>::update_from_arg_matches_mut(self, &mut matches) in try_update_from()
209 fn from_arg_matches(matches: &ArgMatches) -> Result<Self, Error>; in from_arg_matches()
243 fn from_arg_matches_mut(matches: &mut ArgMatches) -> Result<Self, Error> { in from_arg_matches_mut()
244 Self::from_arg_matches(matches) in from_arg_matches_mut()
248 fn update_from_arg_matches(&mut self, matches: &ArgMatches) -> Result<(), Error>; in update_from_arg_matches()
251 fn update_from_arg_matches_mut(&mut self, matches: &mut ArgMatches) -> Result<(), Error> { in update_from_arg_matches_mut()
252 self.update_from_arg_matches(matches) in update_from_arg_matches_mut()
385 .matches(input, ignore_case) in from_str()
433 fn from_arg_matches(matches: &ArgMatches) -> Result<Self, Error> { in from_arg_matches()
434 <T as FromArgMatches>::from_arg_matches(matches).map(Box::new) in from_arg_matches()
436 fn from_arg_matches_mut(matches: &mut ArgMatches) -> Result<Self, Error> { in from_arg_matches_mut()
437 <T as FromArgMatches>::from_arg_matches_mut(matches).map(Box::new) in from_arg_matches_mut()
439 fn update_from_arg_matches(&mut self, matches: &ArgMatches) -> Result<(), Error> { in update_from_arg_matches()
440 <T as FromArgMatches>::update_from_arg_matches(self, matches) in update_from_arg_matches()
442 fn update_from_arg_matches_mut(&mut self, matches: &mut ArgMatches) -> Result<(), Error> { in update_from_arg_matches_mut()
443 <T as FromArgMatches>::update_from_arg_matches_mut(self, matches) in update_from_arg_matches_mut()