Trait papyrus::Commands

source ·
pub trait Commands {
    fn build_help_response(&self, command: Option<&str>) -> String;
    fn find_command(&self, command: &str) -> Result<Command, String>;
}

Required Methods

Builds the help string of the commands.

Conveniance function to lookup the Commands and return if found.

Implementations on Foreign Types

Implementors