pub trait CliCommand {
    // Required methods
    fn process(
        &self,
        args: Vec<String>,
        flags: Vec<String>,
        value_flags: HashMap<String, String>
    );
    fn help(&self) -> CliHelpScreen;
}

Required Methods§

source

fn process( &self, args: Vec<String>, flags: Vec<String>, value_flags: HashMap<String, String> )

source

fn help(&self) -> CliHelpScreen

Implementors§