Enum arcdps_imgui::Key
source · #[repr(u32)]pub enum Key {
Show 22 variants
Tab = 0,
LeftArrow = 1,
RightArrow = 2,
UpArrow = 3,
DownArrow = 4,
PageUp = 5,
PageDown = 6,
Home = 7,
End = 8,
Insert = 9,
Delete = 10,
Backspace = 11,
Space = 12,
Enter = 13,
Escape = 14,
KeyPadEnter = 15,
A = 16,
C = 17,
V = 18,
X = 19,
Y = 20,
Z = 21,
}
Expand description
A key identifier
Variants§
Tab = 0
LeftArrow = 1
RightArrow = 2
UpArrow = 3
DownArrow = 4
PageUp = 5
PageDown = 6
Home = 7
End = 8
Insert = 9
Delete = 10
Backspace = 11
Space = 12
Enter = 13
Escape = 14
KeyPadEnter = 15
A = 16
C = 17
V = 18
X = 19
Y = 20
Z = 21
Implementations§
Trait Implementations§
impl Copy for Key
impl Eq 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 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