pub trait Command: Serialize + Debug {
    type Response: DeserializeOwned + Debug;

    const COMMAND: &'static str;
}

Required Associated Types§

Required Associated Constants§

Implementors§