Trait ExecuteCommand

Source
pub trait ExecuteCommand {
    // Required method
    fn execute(
        &mut self,
        args: Vec<String>,
        args_info: Vec<CommandArgInfo>,
    ) -> Pin<Box<dyn Future<Output = Result<CommandStatus>> + '_>>;
}

Required Methods§

Source

fn execute( &mut self, args: Vec<String>, args_info: Vec<CommandArgInfo>, ) -> Pin<Box<dyn Future<Output = Result<CommandStatus>> + '_>>

Implementors§