pub trait IntoApp: Sized {
fn into_app<'help>() -> App<'help>;
fn into_app_for_update<'help>() -> App<'help>;
}
Expand description
Build an App
relevant for a user-defined container.
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
.