Lines Matching defs:author
57 /// .author("Me, me@mail.com")
77 author: Option<Str>,
1453 /// Sets the author(s) for the help message.
1456 /// automatically set your application's author(s) to the same thing as your
1459 /// **NOTE:** A custom [`help_template`][Command::help_template] is needed for author to show
1467 /// .author("Me, me@mymain.com")
1471 pub fn author(mut self, author: impl IntoResettable<Str>) -> Self {
1472 self.author = author.into_resettable().into_option();
1749 /// * `{author}` - Author information.
1750 /// * `{author-with-newline}` - Author followed by `\n`.
1751 /// * `{author-section}` - Author preceded and followed by `\n`.
1787 /// {author-with-newline}{about-with-newline}
3261 self.author.as_deref()
4633 author: Default::default(),