Enum qapi_qmp::InputEvent[][src]

pub enum InputEvent {
    btn {
        data: InputBtnEvent,
    },
    abs {
        data: InputMoveEvent,
    },
    rel {
        data: InputMoveEvent,
    },
    key {
        data: InputKeyEvent,
    },
}

Variants

Fields of btn

Fields of abs

Fields of rel

Fields of key

Trait Implementations

impl Debug for InputEvent
[src]

Formats the value using the given formatter. Read more

impl Clone for InputEvent
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for InputEvent

impl Sync for InputEvent