Trait async_mpd::cmd::MpdCmd[][src]

pub trait MpdCmd {
    type Handler: ResponseHandler;

    const CMD: &'static str;
    fn argument(&self) -> Option<String> { ... }
fn to_cmdline(&self) -> String { ... } }

Associated Types

The Response handler for this command

Associated Constants

The Command name

Provided methods

Optionally returns the commands argument as a String

Creates the MPD command line for this command

Implementors