pub trait ShellCommand {
    // Required method
    fn execute(
        &self,
        context: ShellCommandContext
    ) -> LocalBoxFuture<'static, ExecuteResult>;
}

Required Methods§

source

fn execute( &self, context: ShellCommandContext ) -> LocalBoxFuture<'static, ExecuteResult>

Implementors§