#[repr(C)]pub enum ImGuiKey {
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,
A = 15,
C = 16,
V = 17,
X = 18,
Y = 19,
Z = 20,
COUNT = 21,
}
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
A = 15
C = 16
V = 17
X = 18
Y = 19
Z = 20
COUNT = 21
Trait Implementations§
impl Copy for ImGuiKey
impl Eq for ImGuiKey
impl StructuralPartialEq for ImGuiKey
Auto Trait Implementations§
impl Freeze for ImGuiKey
impl RefUnwindSafe for ImGuiKey
impl Send for ImGuiKey
impl Sync for ImGuiKey
impl Unpin for ImGuiKey
impl UnwindSafe for ImGuiKey
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