Enum libnoentiendo::keyboard::commodore::C64Keys
source · pub enum C64Keys {
Show 66 variants
LeftArrow,
Digit1,
Digit2,
Digit3,
Digit4,
Digit5,
Digit6,
Digit7,
Digit8,
Digit9,
Digit0,
Plus,
Minus,
Pound,
ClrHome,
InsertDelete,
Control,
Q,
W,
E,
R,
T,
Y,
U,
I,
O,
P,
At,
Asterisk,
UpArrow,
Restore,
RunStop,
ShiftLock,
A,
S,
D,
F,
G,
H,
J,
K,
L,
Colon,
Semicolon,
Equals,
Return,
Commodore,
LShift,
Z,
X,
C,
V,
B,
N,
M,
Comma,
Period,
Slash,
RShift,
CursorUpDown,
CursorLeftRight,
Space,
F1,
F3,
F5,
F7,
}
Expand description
Keys found on a VIC-20 or Commodore 64 keyboard.
Variants§
LeftArrow
Digit1
Digit2
Digit3
Digit4
Digit5
Digit6
Digit7
Digit8
Digit9
Digit0
Plus
Minus
Pound
ClrHome
InsertDelete
Control
Q
W
E
R
T
Y
U
I
O
P
At
Asterisk
UpArrow
Restore
RunStop
ShiftLock
A
S
D
F
G
H
J
K
L
Colon
Semicolon
Equals
Return
Commodore
LShift
Z
X
C
V
B
N
M
Comma
Period
Slash
RShift
CursorUpDown
CursorLeftRight
Space
F1
F3
F5
F7
Trait Implementations§
source§impl<'de> Deserialize<'de> for C64Keys
impl<'de> Deserialize<'de> for C64Keys
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl KeyAdapter<KeyPosition, C64Keys> for C64KeyboardAdapter
impl KeyAdapter<KeyPosition, C64Keys> for C64KeyboardAdapter
source§impl KeyAdapter<KeySymbol, C64Keys> for C64SymbolAdapter
impl KeyAdapter<KeySymbol, C64Keys> for C64SymbolAdapter
source§impl KeyAdapter<VirtualKey, C64Keys> for C64VirtualAdapter
impl KeyAdapter<VirtualKey, C64Keys> for C64VirtualAdapter
source§impl PartialEq for C64Keys
impl PartialEq for C64Keys
impl Copy for C64Keys
impl Eq for C64Keys
impl StructuralEq for C64Keys
impl StructuralPartialEq for C64Keys
Auto Trait Implementations§
impl RefUnwindSafe for C64Keys
impl Send for C64Keys
impl Sync for C64Keys
impl Unpin for C64Keys
impl UnwindSafe for C64Keys
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.