Home
last modified time | relevance | path

Searched refs:help_short (Results 1 – 2 of 2) sorted by relevance

/external/rust/crates/clap/src/app/
Dmod.rs471 pub fn help_short<S: AsRef<str> + 'b>(mut self, s: S) -> Self { in help_short() method
472 self.p.help_short(s.as_ref()); in help_short()
1690 yaml_str!(a, yaml, help_short); in from()
Dparser.rs73 help_short: Option<char>, field
94 pub fn help_short(&mut self, s: &str) { in help_short() function
100 self.help_short = Some(c); in help_short()
1473 if self.help_short.is_none() && !self.contains_short('h') { in create_help_and_version()
1474 self.help_short = Some('h'); in create_help_and_version()
1483 short: self.help_short, in create_help_and_version()
1549 if let Some(h) = self.help_short { in check_for_help_and_version_char()