Enum qapi_qmp::SchemaInfo[][src]

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

Variants

Fields of builtin

Fields of command

Fields of array

Fields of enum_

Fields of object

Fields of alternate

Fields of event

Methods

impl SchemaInfo
[src]

Trait Implementations

impl Debug for SchemaInfo
[src]

Formats the value using the given formatter. Read more

impl Clone for SchemaInfo
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for SchemaInfo

impl Sync for SchemaInfo