add App::get_long_about

This commit is contained in:
Waleed Khan 2021-10-10 17:17:55 -07:00
parent d97c038b1b
commit e73ec0887d

View file

@ -137,6 +137,14 @@ impl<'help> App<'help> {
self.about
}
/// Get the help message specified via [`App::long_about`].
///
/// [`App::long_about`]: App::long_about()
#[inline]
pub fn get_long_about(&self) -> Option<&str> {
self.long_about
}
/// Iterate through the *visible* aliases for this subcommand.
#[inline]
pub fn get_visible_aliases(&self) -> impl Iterator<Item = &str> {