pub trait IntoApp: Sized {
// Required methods
fn into_app<'b>() -> App<'b>;
fn augment_clap(app: App<'_>) -> App<'_>;
}
Expand description
Build an App according to the struct
Also serves for flattening
Required Methods§
Sourcefn augment_clap(app: App<'_>) -> App<'_>
fn augment_clap(app: App<'_>) -> App<'_>
@TODO @release @docs
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.