[][src]Struct fermium::SDL_TouchFingerEvent

#[repr(C)]
pub struct SDL_TouchFingerEvent {
    pub type_: Uint32,
    pub timestamp: Uint32,
    pub touchId: SDL_TouchID,
    pub fingerId: SDL_FingerID,
    pub x: f32,
    pub y: f32,
    pub dx: f32,
    pub dy: f32,
    pub pressure: f32,
}

Fields

type_: Uint32timestamp: Uint32touchId: SDL_TouchIDfingerId: SDL_FingerIDx: f32y: f32dx: f32dy: f32pressure: f32

Trait Implementations

impl PartialEq<SDL_TouchFingerEvent> for SDL_TouchFingerEvent[src]

impl Debug for SDL_TouchFingerEvent[src]

impl Copy for SDL_TouchFingerEvent[src]

impl Clone for SDL_TouchFingerEvent[src]

impl Default for SDL_TouchFingerEvent[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for 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> Into<U> for T where
    U: From<T>, 
[src]

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.

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

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

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