[][src]Enum qapi_qmp::SchemaInfo

pub enum SchemaInfo {
    array {
        features: Option<Vec<String>>,
        name: String,
        array: SchemaInfoArray,
    },
    alternate {
        features: Option<Vec<String>>,
        name: String,
        alternate: SchemaInfoAlternate,
    },
    object {
        features: Option<Vec<String>>,
        name: String,
        object: SchemaInfoObject,
    },
    command {
        features: Option<Vec<String>>,
        name: String,
        command: SchemaInfoCommand,
    },
    builtin {
        features: Option<Vec<String>>,
        name: String,
        builtin: SchemaInfoBuiltin,
    },
    enum_ {
        features: Option<Vec<String>>,
        name: String,
        enum_: SchemaInfoEnum,
    },
    event {
        features: Option<Vec<String>>,
        name: String,
        event: SchemaInfoEvent,
    },
}

Variants

array

Fields of array

features: Option<Vec<String>>name: Stringarray: SchemaInfoArray
alternate

Fields of alternate

features: Option<Vec<String>>name: Stringalternate: SchemaInfoAlternate
object

Fields of object

features: Option<Vec<String>>name: Stringobject: SchemaInfoObject
command

Fields of command

features: Option<Vec<String>>name: Stringcommand: SchemaInfoCommand
builtin

Fields of builtin

features: Option<Vec<String>>name: Stringbuiltin: SchemaInfoBuiltin
enum_

Fields of enum_

features: Option<Vec<String>>name: Stringenum_: SchemaInfoEnum
event

Fields of event

features: Option<Vec<String>>name: Stringevent: SchemaInfoEvent

Implementations

impl SchemaInfo[src]

Trait Implementations

impl Clone for SchemaInfo[src]

impl Debug for SchemaInfo[src]

impl<'de> Deserialize<'de> for SchemaInfo[src]

impl Serialize for SchemaInfo[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.