Enum mg_settings::key::Key [] [src]

pub enum Key {
    Alt(Box<Key>),
    Backspace,
    Char(char),
    Control(Box<Key>),
    Delete,
    Down,
    End,
    Enter,
    Escape,
    F1,
    F2,
    F3,
    F4,
    F5,
    F6,
    F7,
    F8,
    F9,
    F10,
    F11,
    F12,
    Home,
    Insert,
    Left,
    PageDown,
    PageUp,
    Right,
    Shift(Box<Key>),
    Space,
    Tab,
    Up,
}

Enum representing the keys that can be used in a mapping.

Variants

Trait Implementations

impl Clone for Key
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Key
[src]

[src]

Formats the value using the given formatter. Read more

impl Eq for Key
[src]

impl Hash for Key
[src]

[src]

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl PartialEq for Key
[src]

[src]

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

[src]

This method tests for !=.

impl Display for Key
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Key

impl Sync for Key