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

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

The location on the keyboard of a key.

Variants

Standard

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

Left

The left-hand version of a key.

Right

The right-hand version of a key.

Numpad

The key was on a numeric pad.

Mobile

The key was on a mobile device.

Joystick

The key was on a joystick.

Trait Implementations

impl Clone for KeyboardLocation[src]

impl Copy for KeyboardLocation[src]

impl Eq for KeyboardLocation[src]

impl PartialEq<KeyboardLocation> for KeyboardLocation[src]

impl Debug for KeyboardLocation[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]