logo
pub enum Key {
Show 101 variants A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z, Number0, Number1, Number2, Number3, Number4, Number5, Number6, Number7, Number8, Number9, Numpad0, Numpad1, Numpad2, Numpad3, Numpad4, Numpad5, Numpad6, Numpad7, Numpad8, Numpad9, NumpadAdd, NumpadDecimal, NumpadDivide, NumpadEnter, NumpadMultiply, NumpadSubtract, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14, F15, Left, Up, Right, Down, Alt, Backquote, Backslash, Backspace, CapsLock, Comma, Command, Control, Delete, End, Enter, Equals, Escape, Home, Insert, LeftBracket, Minus, PageDown, PageUp, Period, Quote, RightBracket, Semicolon, Shift, Slash, Space, Tab, Menu, Search, Unknown { keycode: i32, },
}
Expand description

All the possible keyboard keys that can be handled. Use Unknown to handle any platform-specific key codes not yet supported here.

Variants

A

B

C

D

E

F

G

H

I

J

K

L

M

N

O

P

Q

R

S

T

U

V

W

X

Y

Z

Number0

Number1

Number2

Number3

Number4

Number5

Number6

Number7

Number8

Number9

Numpad0

Numpad1

Numpad2

Numpad3

Numpad4

Numpad5

Numpad6

Numpad7

Numpad8

Numpad9

NumpadAdd

NumpadDecimal

NumpadDivide

NumpadEnter

NumpadMultiply

NumpadSubtract

F1

F2

F3

F4

F5

F6

F7

F8

F9

F10

F11

F12

F13

F14

F15

Left

Up

Right

Down

Alt

Backquote

Backslash

Backspace

CapsLock

Comma

Command

Control

Delete

End

Enter

Equals

Escape

Home

Insert

LeftBracket

Minus

PageDown

PageUp

Period

Quote

RightBracket

Semicolon

Shift

Slash

Space

Tab

Menu

Search

Unknown

Fields

keycode: i32

Used if the environment sends an unknown key code.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

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

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Typed getter

Inspect the context.

Inspect the context.

Inspect the context.

Calls U::from(self).

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

Convert into color

The alignment of pointer.

The type for initializers.

Initializes a with the given initializer. Read more

Dereferences the given pointer. Read more

Mutably dereferences the given pointer. Read more

Drops the object pointed to by the given pointer. Read more

Sets value as a parameter of self.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.