pub trait Command: Sized {
const NAME: &'static str;
fn spec() -> CommandSpec;
fn parse(fragments: &[CommandFragment]) -> Option<Self>;
}Required Associated Constants
Required Methods
source
fn spec() -> CommandSpec
source
pub trait Command: Sized {
const NAME: &'static str;
fn spec() -> CommandSpec;
fn parse(fragments: &[CommandFragment]) -> Option<Self>;
}