[][src]Struct fermium::SDL_HapticCondition

#[repr(C)]
pub struct SDL_HapticCondition {
    pub type_: Uint16,
    pub direction: SDL_HapticDirection,
    pub length: Uint32,
    pub delay: Uint16,
    pub button: Uint16,
    pub interval: Uint16,
    pub right_sat: [Uint16; 3],
    pub left_sat: [Uint16; 3],
    pub right_coeff: [Sint16; 3],
    pub left_coeff: [Sint16; 3],
    pub deadband: [Uint16; 3],
    pub center: [Sint16; 3],
}

Fields

type_: Uint16direction: SDL_HapticDirectionlength: Uint32delay: Uint16button: Uint16interval: Uint16right_sat: [Uint16; 3]left_sat: [Uint16; 3]right_coeff: [Sint16; 3]left_coeff: [Sint16; 3]deadband: [Uint16; 3]center: [Sint16; 3]

Trait Implementations

impl Clone for SDL_HapticCondition[src]

impl Copy for SDL_HapticCondition[src]

impl Debug for SDL_HapticCondition[src]

impl Default for SDL_HapticCondition[src]

impl PartialEq<SDL_HapticCondition> for SDL_HapticCondition[src]

impl StructuralPartialEq for SDL_HapticCondition[src]

Auto Trait Implementations

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.