pub enum OemCursor {
Show 14 variants
Normal = 32_512,
IBeam = 32_513,
Wait = 32_514,
Cross = 32_515,
Up = 32_516,
Size = 32_640,
Icon = 32_641,
SizeNWSE = 32_642,
SizeNESW = 32_643,
SizeWE = 32_644,
SizeNS = 32_645,
SizeALL = 32_646,
No = 32_648,
AppStarting = 32_650,
}
Expand description
List of system cursors. To use with the Image
resource.
Variants§
Normal = 32_512
IBeam = 32_513
Wait = 32_514
Cross = 32_515
Up = 32_516
Size = 32_640
Icon = 32_641
SizeNWSE = 32_642
SizeNESW = 32_643
SizeWE = 32_644
SizeNS = 32_645
SizeALL = 32_646
No = 32_648
AppStarting = 32_650
Trait Implementations§
impl Copy for OemCursor
impl StructuralPartialEq for OemCursor
Auto Trait Implementations§
impl Freeze for OemCursor
impl RefUnwindSafe for OemCursor
impl Send for OemCursor
impl Sync for OemCursor
impl Unpin for OemCursor
impl UnwindSafe for OemCursor
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