Trait CommandComponent

Source
pub trait CommandComponent: PropertyInstanceGetter + PropertyInstanceSetter {
    // Provided methods
    fn scope(&self) -> Option<String> { ... }
    fn command(&self) -> Option<String> { ... }
    fn help(&self) -> Option<String> { ... }
}

Provided Methods§

Source

fn scope(&self) -> Option<String>

Source

fn command(&self) -> Option<String>

Source

fn help(&self) -> Option<String>

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§