Lines Matching defs:hide
13 /// to [hide] single values from help messages and shell completions or to attach [help] to
26 /// PossibleValue::new("secret speed").hide(true)
32 /// [hide]: PossibleValue::hide()
39 hide: bool,
57 /// [hidden]: PossibleValue::hide
90 /// want to hide some values.
97 /// .hide(true)
103 pub fn hide(mut self, yes: bool) -> Self {
104 self.hide = yes;
164 if !self.hide {
171 /// Report if [`PossibleValue::hide`] is set
174 self.hide
179 !self.hide && self.help.is_some()
186 if !self.hide {