Enum stdweb::web::event::KeyboardLocation[][src]

pub enum KeyboardLocation {
    Standard,
    Left,
    Right,
    Numpad,
    Mobile,
    Joystick,
}

The location on the keyboard of a key.

Variants

The key has only one version, or the location can't be distinguished.

The left-hand version of a key.

The right-hand version of a key.

The key was on a numeric pad.

The key was on a mobile device.

The key was on a joystick.

Trait Implementations

impl Clone for KeyboardLocation
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for KeyboardLocation
[src]

impl Debug for KeyboardLocation
[src]

Formats the value using the given formatter. Read more

impl Eq for KeyboardLocation
[src]

impl PartialEq for KeyboardLocation
[src]

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

This method tests for !=.

Auto Trait Implementations