pub trait CliCommand {
// Required methods
fn explain(&self) -> String;
fn execute_cmd<'life0, 'life1, 'async_trait>(
&'life0 mut self,
client: &'life1 dyn Client,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
// Provided methods
fn use_tracing(&self) -> bool { ... }
fn login_required(&self) -> bool { ... }
fn connection_required(&self) -> bool { ... }
}