Enum easy_imgui::MouseCursor 
source · #[repr(i32)]pub enum MouseCursor {
    None = -1,
    Arrow = 0,
    TextInput = 1,
    ResizeAll = 2,
    ResizeNS = 3,
    ResizeEW = 4,
    ResizeNESW = 5,
    ResizeNWSE = 6,
    Hand = 7,
    NotAllowed = 8,
}Variants§
None = -1
Arrow = 0
TextInput = 1
ResizeAll = 2
ResizeNS = 3
ResizeEW = 4
ResizeNESW = 5
ResizeNWSE = 6
Hand = 7
NotAllowed = 8
Implementations§
Trait Implementations§
source§impl Clone for MouseCursor
 
impl Clone for MouseCursor
source§fn clone(&self) -> MouseCursor
 
fn clone(&self) -> MouseCursor
Returns a copy 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 MouseCursor
 
impl Debug for MouseCursor
source§impl Ord for MouseCursor
 
impl Ord for MouseCursor
source§fn cmp(&self, other: &MouseCursor) -> Ordering
 
fn cmp(&self, other: &MouseCursor) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
    Self: Sized,
 
fn max(self, other: Self) -> Selfwhere
    Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for MouseCursor
 
impl PartialEq for MouseCursor
source§fn eq(&self, other: &MouseCursor) -> bool
 
fn eq(&self, other: &MouseCursor) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl PartialOrd for MouseCursor
 
impl PartialOrd for MouseCursor
source§fn partial_cmp(&self, other: &MouseCursor) -> Option<Ordering>
 
fn partial_cmp(&self, other: &MouseCursor) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
 
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for 
self and other) and is used by the <=
operator. Read moreimpl Copy for MouseCursor
impl Eq for MouseCursor
impl StructuralPartialEq for MouseCursor
Auto Trait Implementations§
impl Freeze for MouseCursor
impl RefUnwindSafe for MouseCursor
impl Send for MouseCursor
impl Sync for MouseCursor
impl Unpin for MouseCursor
impl UnwindSafe for MouseCursor
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