pub trait CommandComponent: PropertyInstanceGetter + PropertyInstanceSetter {
// Provided methods
fn scope(&self) -> Option<String> { ... }
fn command(&self) -> Option<String> { ... }
fn help(&self) -> Option<String> { ... }
}
Provided Methods§
fn scope(&self) -> Option<String>
fn command(&self) -> Option<String>
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.