#[repr(u32)]pub enum InputCursorShape {
Show 17 variants
CursorArrow = 0,
CursorIbeam = 1,
CursorPointingHand = 2,
CursorCross = 3,
CursorWait = 4,
CursorBusy = 5,
CursorDrag = 6,
CursorCanDrop = 7,
CursorForbidden = 8,
CursorVsize = 9,
CursorHsize = 10,
CursorBdiagsize = 11,
CursorFdiagsize = 12,
CursorMove = 13,
CursorVsplit = 14,
CursorHsplit = 15,
CursorHelp = 16,
}
Variants§
CursorArrow = 0
CursorIbeam = 1
CursorPointingHand = 2
CursorCross = 3
CursorWait = 4
CursorBusy = 5
CursorDrag = 6
CursorCanDrop = 7
CursorForbidden = 8
CursorVsize = 9
CursorHsize = 10
CursorBdiagsize = 11
CursorFdiagsize = 12
CursorMove = 13
CursorVsplit = 14
CursorHsplit = 15
CursorHelp = 16
Trait Implementations§
Source§impl Clone for InputCursorShape
impl Clone for InputCursorShape
Source§fn clone(&self) -> InputCursorShape
fn clone(&self) -> InputCursorShape
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 InputCursorShape
impl Debug for InputCursorShape
Source§impl Hash for InputCursorShape
impl Hash for InputCursorShape
Source§impl PartialEq for InputCursorShape
impl PartialEq for InputCursorShape
impl Copy for InputCursorShape
impl Eq for InputCursorShape
impl StructuralPartialEq for InputCursorShape
Auto Trait Implementations§
impl Freeze for InputCursorShape
impl RefUnwindSafe for InputCursorShape
impl Send for InputCursorShape
impl Sync for InputCursorShape
impl Unpin for InputCursorShape
impl UnwindSafe for InputCursorShape
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