#[repr(C)]pub enum ImGuiNavInput {
Show 22 variants
Activate = 0,
Cancel = 1,
Input = 2,
Menu = 3,
DpadLeft = 4,
DpadRight = 5,
DpadUp = 6,
DpadDown = 7,
LStickLeft = 8,
LStickRight = 9,
LStickUp = 10,
LStickDown = 11,
FocusPrev = 12,
FocusNext = 13,
TweakSlow = 14,
TweakFast = 15,
KeyMenu_ = 16,
KeyLeft_ = 17,
KeyRight_ = 18,
KeyUp_ = 19,
KeyDown_ = 20,
COUNT = 21,
}
Variants§
Activate = 0
Cancel = 1
Input = 2
Menu = 3
DpadLeft = 4
DpadRight = 5
DpadUp = 6
DpadDown = 7
LStickLeft = 8
LStickRight = 9
LStickUp = 10
LStickDown = 11
FocusPrev = 12
FocusNext = 13
TweakSlow = 14
TweakFast = 15
KeyMenu_ = 16
KeyLeft_ = 17
KeyRight_ = 18
KeyUp_ = 19
KeyDown_ = 20
COUNT = 21
Trait Implementations§
Source§fn clone(&self) -> ImGuiNavInput
fn clone(&self) -> ImGuiNavInput
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
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