pub trait ExecutableArgs: Parser {
    // Required method
    async fn execute<W: AsyncWrite + Unpin>(self, writer: W);
}

Required Methods§

source

async fn execute<W: AsyncWrite + Unpin>(self, writer: W)

Implementors§