1 2 3 4 5 6
use crate::client::Client; pub trait CallableCommand { type Response; fn call(&self, client: &Client) -> Self::Response; }