pub trait IntoApp: Sized {
fn into_app<'help>() -> App<'help>;
fn augment_clap(app: App<'_>) -> App<'_>;
}
Expand description
Build an App according to the struct
Also serves for flattening
Required methods
fn augment_clap(app: App<'_>) -> App<'_>
fn augment_clap(app: App<'_>) -> App<'_>
@TODO @release @docs