Enum egui::output::CursorIcon
source · [−]pub enum CursorIcon {
Show 25 variants
Default,
None,
ContextMenu,
Help,
PointingHand,
Progress,
Wait,
Cell,
Crosshair,
Text,
VerticalText,
Alias,
Copy,
Move,
NoDrop,
NotAllowed,
Grab,
Grabbing,
AllScroll,
ResizeHorizontal,
ResizeNeSw,
ResizeNwSe,
ResizeVertical,
ZoomIn,
ZoomOut,
}Expand description
A mouse cursor icon.
egui emits a CursorIcon in PlatformOutput each frame as a request to the integration.
Loosely based on https://developer.mozilla.org/en-US/docs/Web/CSS/cursor.
Variants
Default
Normal cursor icon, whatever that is.
None
Show no cursor
ContextMenu
A context menu is available
Help
Question mark
PointingHand
Pointing hand, used for e.g. web links
Progress
Shows that processing is being done, but that the program is still interactive.
Wait
Not yet ready, try later.
Cell
Hover a cell in a table
Crosshair
For precision work
Text
Text caret, e.g. “Click here to edit text”
VerticalText
Vertical text caret, e.g. “Click here to edit vertical text”
Alias
Indicated an alias, e.g. a shortcut
Copy
Indicate that a copy will be made
Move
Omnidirectional move icon (e.g. arrows in all cardinal directions)
NoDrop
Can’t drop here
NotAllowed
Forbidden
Grab
The thing you are hovering can be grabbed
Grabbing
You are grabbing the thing you are hovering
AllScroll
Something can be scrolled in any direction (panned).
ResizeHorizontal
Horizontal resize - to make something wider or more narrow (left to/from right)
ResizeNeSw
Diagonal resize / (right-up to/from left-down)
ResizeNwSe
Diagonal resize \ (left-up to/from right-down)
ResizeVertical
Vertical resize | (up-down or down-up)
ZoomIn
Enhance!
ZoomOut
Let’s get a better overview
Implementations
sourceimpl CursorIcon
impl CursorIcon
pub const ALL: [CursorIcon; 25]
Trait Implementations
sourceimpl Clone for CursorIcon
impl Clone for CursorIcon
sourcefn clone(&self) -> CursorIcon
fn clone(&self) -> CursorIcon
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for CursorIcon
impl Debug for CursorIcon
sourceimpl Default for CursorIcon
impl Default for CursorIcon
sourceimpl<'de> Deserialize<'de> for CursorIcon
impl<'de> Deserialize<'de> for CursorIcon
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl PartialEq<CursorIcon> for CursorIcon
impl PartialEq<CursorIcon> for CursorIcon
sourceimpl Serialize for CursorIcon
impl Serialize for CursorIcon
impl Copy for CursorIcon
impl StructuralPartialEq for CursorIcon
Auto Trait Implementations
impl RefUnwindSafe for CursorIcon
impl Send for CursorIcon
impl Sync for CursorIcon
impl Unpin for CursorIcon
impl UnwindSafe for CursorIcon
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more