[][src]Trait qapi_spec::Command

pub trait Command: Serialize + Sync + Send {
    type Ok: DeserializeOwned;

    pub const NAME: &'static str;
    pub const ALLOW_OOB: bool;
}

Associated Types

Loading content...

Associated Constants

pub const NAME: &'static str[src]

pub const ALLOW_OOB: bool[src]

Loading content...

Implementations on Foreign Types

impl<'a, C: Command> Command for &'a C[src]

type Ok = C::Ok

impl<'a, C: Command> Command for &'a mut C[src]

type Ok = C::Ok

Loading content...

Implementors

Loading content...