Trait clap::IntoApp [−][src]
pub trait IntoApp: Sized {
fn into_app<'help>() -> App<'help>;
fn into_app_for_update<'help>() -> App<'help>;
}Expand description
Create an App relevant for a user-defined container.
Derived as part of Parser, Args, and Subcommand.
Required methods
Build an App that can instantiate Self.
See FromArgMatches::from_arg_matches for instantiating Self.
fn into_app_for_update<'help>() -> App<'help>
fn into_app_for_update<'help>() -> App<'help>
Build an App that can update self.
See FromArgMatches::update_from_arg_matches for updating self.
