Skip to main content

SubCommandOf

Trait SubCommandOf 

Source
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§

Source

fn run(&self, global: &G) -> Result<()>

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.

Implementors§