[][src]Enum sdl2_sys::SDL_SystemCursor

#[repr(u32)]pub enum SDL_SystemCursor {
    SDL_SYSTEM_CURSOR_ARROW,
    SDL_SYSTEM_CURSOR_IBEAM,
    SDL_SYSTEM_CURSOR_WAIT,
    SDL_SYSTEM_CURSOR_CROSSHAIR,
    SDL_SYSTEM_CURSOR_WAITARROW,
    SDL_SYSTEM_CURSOR_SIZENWSE,
    SDL_SYSTEM_CURSOR_SIZENESW,
    SDL_SYSTEM_CURSOR_SIZEWE,
    SDL_SYSTEM_CURSOR_SIZENS,
    SDL_SYSTEM_CURSOR_SIZEALL,
    SDL_SYSTEM_CURSOR_NO,
    SDL_SYSTEM_CURSOR_HAND,
    SDL_NUM_SYSTEM_CURSORS,
}

\brief Cursor types for SDL_CreateSystemCursor().

Variants

SDL_SYSTEM_CURSOR_ARROW

< Arrow

SDL_SYSTEM_CURSOR_IBEAM

< I-beam

SDL_SYSTEM_CURSOR_WAIT

< Wait

SDL_SYSTEM_CURSOR_CROSSHAIR

< Crosshair

SDL_SYSTEM_CURSOR_WAITARROW

< Small wait cursor (or Wait if not available)

SDL_SYSTEM_CURSOR_SIZENWSE

< Double arrow pointing northwest and southeast

SDL_SYSTEM_CURSOR_SIZENESW

< Double arrow pointing northeast and southwest

SDL_SYSTEM_CURSOR_SIZEWE

< Double arrow pointing west and east

SDL_SYSTEM_CURSOR_SIZENS

< Double arrow pointing north and south

SDL_SYSTEM_CURSOR_SIZEALL

< Four pointed arrow pointing north, south, east, and west

SDL_SYSTEM_CURSOR_NO

< Slashed circle or crossbones

SDL_SYSTEM_CURSOR_HAND

< Hand

SDL_NUM_SYSTEM_CURSORS

Trait Implementations

impl Clone for SDL_SystemCursor[src]

impl Copy for SDL_SystemCursor[src]

impl Debug for SDL_SystemCursor[src]

impl Eq for SDL_SystemCursor[src]

impl Hash for SDL_SystemCursor[src]

impl PartialEq<SDL_SystemCursor> for SDL_SystemCursor[src]

impl StructuralEq for SDL_SystemCursor[src]

impl StructuralPartialEq for SDL_SystemCursor[src]

Auto Trait Implementations

impl Send for SDL_SystemCursor

impl Sync for SDL_SystemCursor

impl Unpin for SDL_SystemCursor

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.