pub enum RawKey {
ScanCode(KeyCode),
WinVirtualKeycode(KeyCode),
LinuxXorgKeycode(KeyCode),
LinuxConsoleKeycode(KeyCode),
MacVirtualKeycode(KeyCode),
}Variants§
ScanCode(KeyCode)
WinVirtualKeycode(KeyCode)
LinuxXorgKeycode(KeyCode)
LinuxConsoleKeycode(KeyCode)
MacVirtualKeycode(KeyCode)
Trait Implementations§
Source§impl IntoEnumIterator for RawKey
impl IntoEnumIterator for RawKey
impl Copy for RawKey
impl Eq for RawKey
impl StructuralPartialEq for RawKey
Auto Trait Implementations§
impl Freeze for RawKey
impl RefUnwindSafe for RawKey
impl Send for RawKey
impl Sync for RawKey
impl Unpin for RawKey
impl UnsafeUnpin for RawKey
impl UnwindSafe for RawKey
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