ExecutableArgs

Trait ExecutableArgs 

Source
pub trait ExecutableArgs:
    Parser
    + Send
    + 'static {
    // Required method
    fn execute(self, writer: RemoteClient) -> impl Future<Output = bool> + Send;
}

Required Methods§

Source

fn execute(self, writer: RemoteClient) -> impl Future<Output = bool> + Send

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§