pub trait SubCommandOf<G>: Sized {
// Required method
fn run(&self, global: &G) -> Result<()>;
}Expand description
A subcommand invoked in the context of a parent (global-options) struct G.
Required Methods§
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.