[][src]Struct breadx::auto::xinput::FeedbackState

pub struct FeedbackState {
    pub class_id: FeedbackClass,
    pub feedback_id: u8,
    pub len: u16,
    pub pitch: u16,
    pub duration: u16,
    pub led_mask: u32,
    pub led_values: u32,
    pub global_auto_repeat: bool,
    pub click: u8,
    pub percent: u8,
    pub auto_repeats: [u8; 32],
    pub accel_num: u16,
    pub accel_denom: u16,
    pub threshold: u16,
    pub max_symbols: u16,
    pub keysyms: Vec<Keysym>,
    pub resolution: u32,
    pub min_value: i32,
    pub max_value: i32,
    pub led_mask_: u32,
    pub led_values_: u32,
    pub percent_: u8,
    pub pitch_: u16,
    pub duration_: u16,
}

Fields

class_id: FeedbackClassfeedback_id: u8len: u16pitch: u16duration: u16led_mask: u32led_values: u32global_auto_repeat: boolclick: u8percent: u8auto_repeats: [u8; 32]accel_num: u16accel_denom: u16threshold: u16max_symbols: u16keysyms: Vec<Keysym>resolution: u32min_value: i32max_value: i32led_mask_: u32led_values_: u32percent_: u8pitch_: u16duration_: u16

Trait Implementations

impl AsByteSequence for FeedbackState[src]

impl Clone for FeedbackState[src]

impl Debug for FeedbackState[src]

impl Default for FeedbackState[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> 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.