[][src]Struct qapi_spec::ExecuteOob

pub struct ExecuteOob<C, I = Any> {
    pub execute_oob: PhantomData<&'static str>,
    pub arguments: C,
    pub id: I,
}

Fields

execute_oob: PhantomData<&'static str>arguments: Cid: I

Implementations

impl<C: Command, I> ExecuteOob<C, I>[src]

pub fn new(arguments: C, id: I) -> Self[src]

Trait Implementations

impl<C, I> Serialize for ExecuteOob<C, I> where
    C: Command,
    C: Serialize,
    I: Serialize
[src]

Auto Trait Implementations

impl<C, I> RefUnwindSafe for ExecuteOob<C, I> where
    C: RefUnwindSafe,
    I: RefUnwindSafe

impl<C, I> Send for ExecuteOob<C, I> where
    C: Send,
    I: Send

impl<C, I> Sync for ExecuteOob<C, I> where
    C: Sync,
    I: Sync

impl<C, I> Unpin for ExecuteOob<C, I> where
    C: Unpin,
    I: Unpin

impl<C, I> UnwindSafe for ExecuteOob<C, I> where
    C: UnwindSafe,
    I: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.