pub trait CallableCommand {
    type Response;

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

Required Associated Types

Required Methods

Implementors