Trait pretty_exec::clap::CommandFactory
[−]pub trait CommandFactory {
fn into_app<'help>() -> App<'help>;
fn into_app_for_update<'help>() -> App<'help>;
fn command<'help>() -> App<'help> { ... }
fn command_for_update<'help>() -> App<'help> { ... }
}Expand description
Required Methods
fn into_app_for_update<'help>() -> App<'help>
fn into_app_for_update<'help>() -> App<'help>
Deprecated, replaced with CommandFactory::command_for_update
Provided Methods
Build a Command that can instantiate Self.
See FromArgMatches::from_arg_matches_mut for instantiating Self.
fn command_for_update<'help>() -> App<'help>
fn command_for_update<'help>() -> App<'help>
Build a Command that can update self.
See FromArgMatches::update_from_arg_matches_mut for updating self.