[][src]Trait clap::IntoApp

pub trait IntoApp: Sized {
    fn into_app<'help>() -> App<'help>;
fn augment_clap(app: App<'_>) -> App<'_>; }
[]

Build an App according to the struct

Also serves for flattening

Required methods

fn into_app<'help>() -> App<'help>[]

@TODO @release @docs

fn augment_clap(app: App<'_>) -> App<'_>[]

@TODO @release @docs

Implementations on Foreign Types

impl<T: IntoApp> IntoApp for Box<T>[src][]

Implementors