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

pub struct DeviceCtl {
    pub control_id: DeviceControl,
    pub len: u16,
    pub first_valuator: u8,
    pub resolution_values: Vec<u32>,
    pub min_x: i32,
    pub max_x: i32,
    pub min_y: i32,
    pub max_y: i32,
    pub flip_x: u32,
    pub flip_y: u32,
    pub rotation: u32,
    pub button_threshold: u32,
    pub status: u8,
    pub enable: u8,
    pub offset_x: u32,
    pub offset_y: u32,
    pub width: i32,
    pub height: i32,
    pub screen: i32,
    pub following: u32,
}

Fields

control_id: DeviceControllen: u16first_valuator: u8resolution_values: Vec<u32>min_x: i32max_x: i32min_y: i32max_y: i32flip_x: u32flip_y: u32rotation: u32button_threshold: u32status: u8enable: u8offset_x: u32offset_y: u32width: i32height: i32screen: i32following: u32

Trait Implementations

impl AsByteSequence for DeviceCtl[src]

impl Clone for DeviceCtl[src]

impl Debug for DeviceCtl[src]

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