Trait clap::IntoApp[][src]

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.

Build an App that can update self.

See FromArgMatches::update_from_arg_matches for updating self.

Implementations on Foreign Types

Implementors