pub enum UnstableCursor {
Busy,
BusyInBackground,
DisappearingItem,
Help,
}Expand description
The following cursors are available, that might be most appropriate for some platforms, but don’t have proper alternatives on other platforms.
Variants§
Busy
A spinning cursor indicating that the application is busy processing, and cannot accept interactions from the user.
- macOS: Not available.
- Windows: IDC_WAIT
BusyInBackground
A spinning cursor indicating that the application is busy processing,
but can accept interactions from the user (where
UnstableCursor::Busy can’t).
- macOS: Not available.
- Windows: IDC_APPSTARTING
DisappearingItem
A cursor that indicates that the item will disappear if the action is continued.
- macOS: disappearingItemCursor
- Windows: Not available.
Help
A cursor that indicates that the current context allows help from the application for the action.
- macOS: Not available.
- Windows: IDC_HELP
Trait Implementations§
Source§impl Clone for UnstableCursor
impl Clone for UnstableCursor
Source§fn clone(&self) -> UnstableCursor
fn clone(&self) -> UnstableCursor
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 UnstableCursor
impl Debug for UnstableCursor
Source§impl PartialEq for UnstableCursor
impl PartialEq for UnstableCursor
impl Copy for UnstableCursor
impl Eq for UnstableCursor
impl StructuralPartialEq for UnstableCursor
Auto Trait Implementations§
impl Freeze for UnstableCursor
impl RefUnwindSafe for UnstableCursor
impl Send for UnstableCursor
impl Sync for UnstableCursor
impl Unpin for UnstableCursor
impl UnwindSafe for UnstableCursor
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