Enum autopilot::key::KeyCode[][src]

pub enum KeyCode {
    F1,
    F2,
    F3,
    F4,
    F5,
    F6,
    F7,
    F8,
    F9,
    F10,
    F11,
    F12,
    LeftArrow,
    Control,
    RightArrow,
    DownArrow,
    End,
    UpArrow,
    PageUp,
    Alt,
    Return,
    PageDown,
    Delete,
    Home,
    Escape,
    Backspace,
    Meta,
    CapsLock,
    Shift,
    Tab,
    Space,
}

Device-independent key codes.

Variants

Trait Implementations

impl Copy for KeyCode
[src]

impl Clone for KeyCode
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for KeyCode
[src]

Formats the value using the given formatter. Read more

impl PartialEq for KeyCode
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl From<KeyCode> for u64
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for KeyCode

impl Sync for KeyCode