Enum libnoentiendo::keyboard::KeyPosition
source · pub enum KeyPosition {
Show 104 variants
Escape,
F1,
F2,
F3,
F4,
F5,
F6,
F7,
F8,
F9,
F10,
F11,
F12,
PrintScreen,
ScrollLock,
Pause,
Grave,
Digit1,
Digit2,
Digit3,
Digit4,
Digit5,
Digit6,
Digit7,
Digit8,
Digit9,
Digit0,
Minus,
Equals,
Backspace,
Insert,
Home,
PageUp,
NumLock,
NumDivide,
NumMultiply,
NumMinus,
Tab,
Q,
W,
E,
R,
T,
Y,
U,
I,
O,
P,
LeftBracket,
RightBracket,
Backslash,
Delete,
End,
PageDown,
Num7,
Num8,
Num9,
NumPlus,
CapsLock,
A,
S,
D,
F,
G,
H,
J,
K,
L,
Semicolon,
Apostrophe,
Enter,
Num4,
Num5,
Num6,
LShift,
Z,
X,
C,
V,
B,
N,
M,
Comma,
Period,
Slash,
RShift,
UpArrow,
Num1,
Num2,
Num3,
NumEnter,
LControl,
LSuper,
LAlt,
Space,
RAlt,
RSuper,
Menu,
RControl,
LeftArrow,
DownArrow,
RightArrow,
Num0,
NumPeriod,
}
Expand description
A representation for a position on a modern keyboard. Source: https://en.wikipedia.org/wiki/Keyboard_layout#/media/File:Qwerty.svg
Variants§
Escape
F1
F2
F3
F4
F5
F6
F7
F8
F9
F10
F11
F12
PrintScreen
ScrollLock
Pause
Grave
Digit1
Digit2
Digit3
Digit4
Digit5
Digit6
Digit7
Digit8
Digit9
Digit0
Minus
Equals
Backspace
Insert
Home
PageUp
NumLock
NumDivide
NumMultiply
NumMinus
Tab
Q
W
E
R
T
Y
U
I
O
P
LeftBracket
RightBracket
Backslash
Delete
End
PageDown
Num7
Num8
Num9
NumPlus
CapsLock
A
S
D
F
G
H
J
K
L
Semicolon
Apostrophe
Enter
Num4
Num5
Num6
LShift
Z
X
C
V
B
N
M
Comma
Period
Slash
RShift
UpArrow
Num1
Num2
Num3
NumEnter
LControl
LSuper
LAlt
Space
RAlt
RSuper
Menu
RControl
LeftArrow
DownArrow
RightArrow
Num0
NumPeriod
Trait Implementations§
source§impl Clone for KeyPosition
impl Clone for KeyPosition
source§fn clone(&self) -> KeyPosition
fn clone(&self) -> KeyPosition
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for KeyPosition
impl Debug for KeyPosition
source§impl Hash for KeyPosition
impl Hash for KeyPosition
source§impl KeyAdapter<KeyPosition, C64Keys> for C64KeyboardAdapter
impl KeyAdapter<KeyPosition, C64Keys> for C64KeyboardAdapter
source§impl KeyAdapter<KeyPosition, KeySymbol> for SymbolAdapter
impl KeyAdapter<KeyPosition, KeySymbol> for SymbolAdapter
source§impl PartialEq for KeyPosition
impl PartialEq for KeyPosition
source§fn eq(&self, other: &KeyPosition) -> bool
fn eq(&self, other: &KeyPosition) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for KeyPosition
impl Eq for KeyPosition
impl StructuralEq for KeyPosition
impl StructuralPartialEq for KeyPosition
Auto Trait Implementations§
impl RefUnwindSafe for KeyPosition
impl Send for KeyPosition
impl Sync for KeyPosition
impl Unpin for KeyPosition
impl UnwindSafe for KeyPosition
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
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.