Skip to main content

KeyboardKey

Enum KeyboardKey 

Source
#[repr(u32)]
pub enum KeyboardKey {
Show 110 variants KEY_NULL = 0, KEY_APOSTROPHE = 39, KEY_COMMA = 44, KEY_MINUS = 45, KEY_PERIOD = 46, KEY_SLASH = 47, KEY_ZERO = 48, KEY_ONE = 49, KEY_TWO = 50, KEY_THREE = 51, KEY_FOUR = 52, KEY_FIVE = 53, KEY_SIX = 54, KEY_SEVEN = 55, KEY_EIGHT = 56, KEY_NINE = 57, KEY_SEMICOLON = 59, KEY_EQUAL = 61, KEY_A = 65, KEY_B = 66, KEY_C = 67, KEY_D = 68, KEY_E = 69, KEY_F = 70, KEY_G = 71, KEY_H = 72, KEY_I = 73, KEY_J = 74, KEY_K = 75, KEY_L = 76, KEY_M = 77, KEY_N = 78, KEY_O = 79, KEY_P = 80, KEY_Q = 81, KEY_R = 82, KEY_S = 83, KEY_T = 84, KEY_U = 85, KEY_V = 86, KEY_W = 87, KEY_X = 88, KEY_Y = 89, KEY_Z = 90, KEY_LEFT_BRACKET = 91, KEY_BACKSLASH = 92, KEY_RIGHT_BRACKET = 93, KEY_GRAVE = 96, KEY_SPACE = 32, KEY_ESCAPE = 256, KEY_ENTER = 257, KEY_TAB = 258, KEY_BACKSPACE = 259, KEY_INSERT = 260, KEY_DELETE = 261, KEY_RIGHT = 262, KEY_LEFT = 263, KEY_DOWN = 264, KEY_UP = 265, KEY_PAGE_UP = 266, KEY_PAGE_DOWN = 267, KEY_HOME = 268, KEY_END = 269, KEY_CAPS_LOCK = 280, KEY_SCROLL_LOCK = 281, KEY_NUM_LOCK = 282, KEY_PRINT_SCREEN = 283, KEY_PAUSE = 284, KEY_F1 = 290, KEY_F2 = 291, KEY_F3 = 292, KEY_F4 = 293, KEY_F5 = 294, KEY_F6 = 295, KEY_F7 = 296, KEY_F8 = 297, KEY_F9 = 298, KEY_F10 = 299, KEY_F11 = 300, KEY_F12 = 301, KEY_LEFT_SHIFT = 340, KEY_LEFT_CONTROL = 341, KEY_LEFT_ALT = 342, KEY_LEFT_SUPER = 343, KEY_RIGHT_SHIFT = 344, KEY_RIGHT_CONTROL = 345, KEY_RIGHT_ALT = 346, KEY_RIGHT_SUPER = 347, KEY_KB_MENU = 348, KEY_KP_0 = 320, KEY_KP_1 = 321, KEY_KP_2 = 322, KEY_KP_3 = 323, KEY_KP_4 = 324, KEY_KP_5 = 325, KEY_KP_6 = 326, KEY_KP_7 = 327, KEY_KP_8 = 328, KEY_KP_9 = 329, KEY_KP_DECIMAL = 330, KEY_KP_DIVIDE = 331, KEY_KP_MULTIPLY = 332, KEY_KP_SUBTRACT = 333, KEY_KP_ADD = 334, KEY_KP_ENTER = 335, KEY_KP_EQUAL = 336, KEY_BACK = 4, KEY_MENU = 5, KEY_VOLUME_UP = 24, KEY_VOLUME_DOWN = 25,
}

Variants§

§

KEY_NULL = 0

§

KEY_APOSTROPHE = 39

§

KEY_COMMA = 44

§

KEY_MINUS = 45

§

KEY_PERIOD = 46

§

KEY_SLASH = 47

§

KEY_ZERO = 48

§

KEY_ONE = 49

§

KEY_TWO = 50

§

KEY_THREE = 51

§

KEY_FOUR = 52

§

KEY_FIVE = 53

§

KEY_SIX = 54

§

KEY_SEVEN = 55

§

KEY_EIGHT = 56

§

KEY_NINE = 57

§

KEY_SEMICOLON = 59

§

KEY_EQUAL = 61

§

KEY_A = 65

§

KEY_B = 66

§

KEY_C = 67

§

KEY_D = 68

§

KEY_E = 69

§

KEY_F = 70

§

KEY_G = 71

§

KEY_H = 72

§

KEY_I = 73

§

KEY_J = 74

§

KEY_K = 75

§

KEY_L = 76

§

KEY_M = 77

§

KEY_N = 78

§

KEY_O = 79

§

KEY_P = 80

§

KEY_Q = 81

§

KEY_R = 82

§

KEY_S = 83

§

KEY_T = 84

§

KEY_U = 85

§

KEY_V = 86

§

KEY_W = 87

§

KEY_X = 88

§

KEY_Y = 89

§

KEY_Z = 90

§

KEY_LEFT_BRACKET = 91

§

KEY_BACKSLASH = 92

§

KEY_RIGHT_BRACKET = 93

§

KEY_GRAVE = 96

§

KEY_SPACE = 32

§

KEY_ESCAPE = 256

§

KEY_ENTER = 257

§

KEY_TAB = 258

§

KEY_BACKSPACE = 259

§

KEY_INSERT = 260

§

KEY_DELETE = 261

§

KEY_RIGHT = 262

§

KEY_LEFT = 263

§

KEY_DOWN = 264

§

KEY_UP = 265

§

KEY_PAGE_UP = 266

§

KEY_PAGE_DOWN = 267

§

KEY_HOME = 268

§

KEY_END = 269

§

KEY_CAPS_LOCK = 280

§

KEY_SCROLL_LOCK = 281

§

KEY_NUM_LOCK = 282

§

KEY_PRINT_SCREEN = 283

§

KEY_PAUSE = 284

§

KEY_F1 = 290

§

KEY_F2 = 291

§

KEY_F3 = 292

§

KEY_F4 = 293

§

KEY_F5 = 294

§

KEY_F6 = 295

§

KEY_F7 = 296

§

KEY_F8 = 297

§

KEY_F9 = 298

§

KEY_F10 = 299

§

KEY_F11 = 300

§

KEY_F12 = 301

§

KEY_LEFT_SHIFT = 340

§

KEY_LEFT_CONTROL = 341

§

KEY_LEFT_ALT = 342

§

KEY_LEFT_SUPER = 343

§

KEY_RIGHT_SHIFT = 344

§

KEY_RIGHT_CONTROL = 345

§

KEY_RIGHT_ALT = 346

§

KEY_RIGHT_SUPER = 347

§

KEY_KB_MENU = 348

§

KEY_KP_0 = 320

§

KEY_KP_1 = 321

§

KEY_KP_2 = 322

§

KEY_KP_3 = 323

§

KEY_KP_4 = 324

§

KEY_KP_5 = 325

§

KEY_KP_6 = 326

§

KEY_KP_7 = 327

§

KEY_KP_8 = 328

§

KEY_KP_9 = 329

§

KEY_KP_DECIMAL = 330

§

KEY_KP_DIVIDE = 331

§

KEY_KP_MULTIPLY = 332

§

KEY_KP_SUBTRACT = 333

§

KEY_KP_ADD = 334

§

KEY_KP_ENTER = 335

§

KEY_KP_EQUAL = 336

§

KEY_BACK = 4

§

KEY_MENU = 5

§

KEY_VOLUME_UP = 24

§

KEY_VOLUME_DOWN = 25

Trait Implementations§

Source§

impl Clone for KeyboardKey

Source§

fn clone(&self) -> KeyboardKey

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for KeyboardKey

Source§

impl Debug for KeyboardKey

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Eq for KeyboardKey

Source§

impl Hash for KeyboardKey

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl PartialEq for KeyboardKey

Source§

fn eq(&self, other: &KeyboardKey) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl StructuralPartialEq for KeyboardKey

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.