[][src]Struct multiinput::devices::Axes

pub struct Axes {
    pub x: Option<f64>,
    pub y: Option<f64>,
    pub z: Option<f64>,
    pub rx: Option<f64>,
    pub ry: Option<f64>,
    pub rz: Option<f64>,
    pub slider: Option<f64>,
}

Fields

x: Option<f64>y: Option<f64>z: Option<f64>rx: Option<f64>ry: Option<f64>rz: Option<f64>slider: Option<f64>

Methods

impl Axes[src]

pub fn new() -> Axes[src]

Trait Implementations

impl Clone for Axes[src]

impl Debug for Axes[src]

Auto Trait Implementations

impl RefUnwindSafe for Axes

impl Send for Axes

impl Sync for Axes

impl Unpin for Axes

impl UnwindSafe for Axes

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.