pub trait ExecutableArgs: Parser {
    // Required method
    async fn execute(self, writer: RemoteClient) -> bool;
}

Required Methods§

source

async fn execute(self, writer: RemoteClient) -> bool

Implementors§