pub trait Command: Sized {
    const NAME: &'static str;

    fn spec() -> CommandSpec;
    fn parse(fragments: &[CommandFragment]) -> Option<Self>;
}

Required Associated Constants

Required Methods

Implementors