Trait CommandInfo

Source
pub trait CommandInfo {
    // Required method
    fn caller(&self) -> &'static str;
}
Expand description

Each type implementing Command trait must also implement CommandInfo which is used only to retrieve information about the Command.

Required Methods§

Source

fn caller(&self) -> &'static str

Implementors§