[][src]Struct ndless_sdl::mouse::ll::SDL_Cursor

#[repr(C)]pub struct SDL_Cursor {
    pub area: Rect,
    pub hot_x: int16_t,
    pub hot_y: int16_t,
    pub data: *mut uint8_t,
    pub mask: *mut uint8_t,
    pub save: [*mut uint8_t; 2],
    pub wm_cursor: *mut WMcursor,
}

Fields

area: Recthot_x: int16_thot_y: int16_tdata: *mut uint8_tmask: *mut uint8_tsave: [*mut uint8_t; 2]wm_cursor: *mut WMcursor

Trait Implementations

impl Clone for SDL_Cursor[src]

impl Copy for SDL_Cursor[src]

Auto Trait Implementations

impl !Send for SDL_Cursor

impl !Sync for SDL_Cursor

impl Unpin for SDL_Cursor

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.