[][src]Struct chip::Input

#[repr(C)]
pub struct Input { pub steer: f32, pub roll: f32, pub pitch: f32, pub yaw: f32, pub throttle: f32, pub jump: bool, pub boost: bool, pub slide: bool, pub handbrake: bool, }

Fields

steer: f32roll: f32pitch: f32yaw: f32throttle: f32jump: boolboost: boolslide: boolhandbrake: bool

Trait Implementations

impl Copy for Input[src]

impl Clone for Input[src]

default fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Default for Input[src]

impl Debug for Input[src]

Auto Trait Implementations

impl Send for Input

impl Sync for Input

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto 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> Same for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf for SP where
    SS: SubsetOf<SP>,