[][src]Enum winit::MouseCursor

pub enum MouseCursor {
    Default,
    Crosshair,
    Hand,
    Arrow,
    Move,
    Text,
    Wait,
    Help,
    Progress,
    NotAllowed,
    ContextMenu,
    Cell,
    VerticalText,
    Alias,
    Copy,
    NoDrop,
    Grab,
    Grabbing,
    AllScroll,
    ZoomIn,
    ZoomOut,
    EResize,
    NResize,
    NeResize,
    NwResize,
    SResize,
    SeResize,
    SwResize,
    WResize,
    EwResize,
    NsResize,
    NeswResize,
    NwseResize,
    ColResize,
    RowResize,
}

Describes the appearance of the mouse cursor.

Variants

Default

The platform-dependent default cursor.

Crosshair

A simple crosshair.

Hand

A hand (often used to indicate links in web browsers).

Arrow

Self explanatory.

Move

Indicates something is to be moved.

Text

Indicates text that may be selected or edited.

Wait

Program busy indicator.

Help

Help indicator (often rendered as a "?")

Progress

Progress indicator. Shows that processing is being done. But in contrast with "Wait" the user may still interact with the program. Often rendered as a spinning beach ball, or an arrow with a watch or hourglass.

NotAllowed

Cursor showing that something cannot be done.

ContextMenuCellVerticalTextAliasCopyNoDropGrabGrabbingAllScrollZoomInZoomOutEResize

Indicate that some edge is to be moved. For example, the 'SeResize' cursor is used when the movement starts from the south-east corner of the box.

NResizeNeResizeNwResizeSResizeSeResizeSwResizeWResizeEwResizeNsResizeNeswResizeNwseResizeColResizeRowResize

Trait Implementations

impl PartialEq<MouseCursor> for MouseCursor[src]

#[must_use]
default fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

impl Clone for MouseCursor[src]

default fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Eq for MouseCursor[src]

impl Copy for MouseCursor[src]

impl Default for MouseCursor[src]

impl Debug for MouseCursor[src]

impl Hash for MouseCursor[src]

default fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Serialize for MouseCursor[src]

impl<'de> Deserialize<'de> for MouseCursor[src]

Auto Trait Implementations

impl Send for MouseCursor

impl Sync for MouseCursor

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> SetParameter for T

default fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 

Sets value as a parameter of self.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]