Lines Matching defs:about
39 /// process. These methods then return information about the user supplied
59 /// .about("Explains in brief what the program does")
80 about: Option<StyledStr>,
381 /// .about("Controls configuration features")
410 /// Command::new("config").about("Controls configuration functionality")
412 /// Command::new("debug").about("Controls debug functionality")])
1285 /// // Someone forgot to put .about("...") here
1480 /// **NOTE:** Only `Command::about` (short format) is used in completion
1490 /// .about("Does really amazing things for great people")
1494 pub fn about(mut self, about: impl IntoResettable<StyledStr>) -> Self {
1495 self.about = about.into_resettable().into_option();
1501 /// If [`Command::about`] is not specified, this message will be displayed for `-h`.
1503 /// **NOTE:** Only [`Command::about`] (short format) is used in completion
1513 /// more in depth about how this subcommand really works. It may take about
1517 /// [`Command::about`]: Command::about()
1752 /// * `{about}` - General description (from [`Command::about`] or
1754 /// * `{about-with-newline}` - About followed by `\n`.
1755 /// * `{about-section}` - About preceded and followed by '\n'.
1787 /// {author-with-newline}{about-with-newline}
1794 /// [`Command::about`]: Command::about()
2620 /// .about("Some help and text"))
2626 /// .about("I should be first!"))
3276 /// Get the help message specified via [`Command::about`].
3278 /// [`Command::about`]: Command::about()
3281 self.about.as_ref()
4274 .about(help_about)
4278 let mut help_help_subcmd = Command::new("help").about(help_about);
4287 Command::new("help").about(help_about).arg(
4317 cmd = cmd.about(self.get_about().unwrap().clone());
4636 about: Default::default(),