Lines Matching refs:long_help
57 pub(crate) long_help: Option<StyledStr>,
2003 /// If [`Arg::long_help`] is not specified, this message will be displayed for `--help`.
2040 /// [`Arg::long_help`]: Arg::long_help()
2072 /// .long_help(
2105 pub fn long_help(mut self, h: impl IntoResettable<StyledStr>) -> Self {
2106 self.long_help = h.into_resettable().into_option();
3715 /// let arg = Arg::new("foo").long_help("long help");
3721 self.long_help.as_ref()
4284 .field("long_help", &self.long_help)