pub enum InputKey {
Show 17 variants
K0 = 0,
K1 = 1,
K2 = 2,
K3 = 3,
K4 = 4,
K5 = 5,
K6 = 6,
K7 = 7,
K8 = 8,
K9 = 9,
KA = 10,
KB = 11,
KC = 12,
KD = 13,
KE = 14,
KF = 15,
Quit = 128,
}
Variants§
K0 = 0
K1 = 1
K2 = 2
K3 = 3
K4 = 4
K5 = 5
K6 = 6
K7 = 7
K8 = 8
K9 = 9
KA = 10
KB = 11
KC = 12
KD = 13
KE = 14
KF = 15
Quit = 128
Auto Trait Implementations§
impl Freeze for InputKey
impl RefUnwindSafe for InputKey
impl Send for InputKey
impl Sync for InputKey
impl Unpin for InputKey
impl UnwindSafe for InputKey
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