Skip to main content

CommandExecutor

Trait CommandExecutor 

Source
pub trait CommandExecutor {
    // Required method
    fn execute(
        command_info: &CommandInfo,
        args: Option<&[String]>,
    ) -> Result<()>;
}

Required Methods§

Source

fn execute(command_info: &CommandInfo, args: Option<&[String]>) -> 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§