#[repr(u32)]pub enum BuiltinCursor {
Show 14 variants
Normal = 32_512,
NormalPlusWaiting = 32_650,
Waiting = 32_514,
NormalPlusQuestionMark = 32_651,
Crosshair = 32_515,
Hand = 32_649,
IBeam = 32_513,
SlashedCircle = 32_648,
ArrowAllDirections = 32_646,
ArrowNESW = 32_643,
ArrowNS = 32_645,
ArrowNWSE = 32_642,
ArrowWE = 32_644,
Up = 32_516,
}
Available on crate feature
ui
only.Variants§
Normal = 32_512
Standard arrow
NormalPlusWaiting = 32_650
Standard arrow and small hourglass
Waiting = 32_514
Hourglass
NormalPlusQuestionMark = 32_651
Arrow and question mark
Crosshair = 32_515
Crosshair
Hand = 32_649
Hand
IBeam = 32_513
I-beam
SlashedCircle = 32_648
Slashed circle
ArrowAllDirections = 32_646
Four-pointed arrow pointing north, south, east, and west
ArrowNESW = 32_643
Double-pointed arrow pointing northeast and southwest
ArrowNS = 32_645
Double-pointed arrow pointing north and south
ArrowNWSE = 32_642
Double-pointed arrow pointing northwest and southeast
ArrowWE = 32_644
Double-pointed arrow pointing west and east
Up = 32_516
Vertical arrow
Trait Implementations§
Source§impl Clone for BuiltinCursor
impl Clone for BuiltinCursor
Source§fn clone(&self) -> BuiltinCursor
fn clone(&self) -> BuiltinCursor
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 BuiltinCursor
impl Debug for BuiltinCursor
Source§impl Default for BuiltinCursor
impl Default for BuiltinCursor
Source§fn default() -> BuiltinCursor
fn default() -> BuiltinCursor
Returns the “default value” for a type. Read more
Source§impl From<BuiltinCursor> for u32
impl From<BuiltinCursor> for u32
Source§fn from(enum_value: BuiltinCursor) -> Self
fn from(enum_value: BuiltinCursor) -> Self
Converts to this type from the input type.
Source§impl PartialEq for BuiltinCursor
impl PartialEq for BuiltinCursor
impl Copy for BuiltinCursor
impl Eq for BuiltinCursor
impl StructuralPartialEq for BuiltinCursor
Auto Trait Implementations§
impl Freeze for BuiltinCursor
impl RefUnwindSafe for BuiltinCursor
impl Send for BuiltinCursor
impl Sync for BuiltinCursor
impl Unpin for BuiltinCursor
impl UnwindSafe for BuiltinCursor
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