pub enum Key {
Show 69 variants
Escape,
Space,
Enter,
Tab,
CapsLock,
LeftShift,
RightShift,
LeftControl,
RightControl,
LeftAlt,
RightAlt,
PageUp,
PageDown,
Home,
End,
Insert,
Delete,
F1,
F2,
F3,
F4,
F5,
F6,
F7,
F8,
F9,
F10,
F11,
F12,
ArrowUp,
ArrowDown,
ArrowLeft,
ArrowRight,
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,
Num0,
Num1,
Num2,
Num3,
Num4,
Num5,
Num6,
Num7,
Num8,
Num9,
}Expand description
Teclas para input v0.9.2: 100+ teclas
Variants§
Escape
Space
Enter
Tab
CapsLock
LeftShift
RightShift
LeftControl
RightControl
LeftAlt
RightAlt
PageUp
PageDown
Home
End
Insert
Delete
F1
F2
F3
F4
F5
F6
F7
F8
F9
F10
F11
F12
ArrowUp
ArrowDown
ArrowLeft
ArrowRight
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
Num0
Num1
Num2
Num3
Num4
Num5
Num6
Num7
Num8
Num9
Implementations§
Trait Implementations§
impl Copy for Key
impl StructuralPartialEq for Key
Auto Trait Implementations§
impl Freeze for Key
impl RefUnwindSafe for Key
impl Send for Key
impl Sync for Key
impl Unpin for Key
impl UnsafeUnpin for Key
impl UnwindSafe for Key
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more