#[repr(C)]pub enum ImGuiMouseCursor {
None = -1,
Arrow = 0,
TextInput = 1,
ResizeAll = 2,
ResizeNS = 3,
ResizeEW = 4,
ResizeNESW = 5,
ResizeNWSE = 6,
Hand = 7,
COUNT = 8,
}
Variants§
None = -1
Arrow = 0
TextInput = 1
ResizeAll = 2
ResizeNS = 3
ResizeEW = 4
ResizeNESW = 5
ResizeNWSE = 6
Hand = 7
COUNT = 8
Trait Implementations§
Source§impl Clone for ImGuiMouseCursor
impl Clone for ImGuiMouseCursor
Source§fn clone(&self) -> ImGuiMouseCursor
fn clone(&self) -> ImGuiMouseCursor
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ImGuiMouseCursor
impl Debug for ImGuiMouseCursor
Source§impl PartialEq for ImGuiMouseCursor
impl PartialEq for ImGuiMouseCursor
impl Copy for ImGuiMouseCursor
impl Eq for ImGuiMouseCursor
impl StructuralPartialEq for ImGuiMouseCursor
Auto Trait Implementations§
impl Freeze for ImGuiMouseCursor
impl RefUnwindSafe for ImGuiMouseCursor
impl Send for ImGuiMouseCursor
impl Sync for ImGuiMouseCursor
impl Unpin for ImGuiMouseCursor
impl UnwindSafe for ImGuiMouseCursor
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