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

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

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

Variants

Alt + another key.

Backspace key.

A single-character key.

Control + another key.

Down arrow.

Enter key.

Escape key.

Function key 1

Function key 2

Function key 3

Function key 4

Function key 5

Function key 6

Function key 7

Function key 8

Function key 9

Function key 10

Function key 11

Function key 12

Left arrow.

Right arrow.

Shift + another key.

Space key.

Tab key.

Up arrow.

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.

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