Command

Trait Command 

Source
pub trait Command: Send + Sync {
    // Required method
    fn execute(&self) -> CliResult<()>;
}
Expand description

Trait for command handlers

Required Methods§

Source

fn execute(&self) -> CliResult<()>

Execute the command

Implementors§