pub trait CallableCommand {
    type Response;

    fn call(&self, client: &Client) -> Self::Response;
}

Required Associated Types

Required Methods

Implementors