[][src]Enum input::Motion

pub enum Motion {
    MouseCursor(f64f64),
    MouseRelative(f64f64),
    MouseScroll(f64f64),
    ControllerAxis(ControllerAxisArgs),
    Touch(TouchArgs),
}

Models different kinds of motion.

Variants

MouseCursor(f64f64)

x and y in window coordinates.

MouseRelative(f64f64)

x and y in relative coordinates.

MouseScroll(f64f64)

x and y in scroll ticks.

ControllerAxis(ControllerAxisArgs)

controller axis move event.

Touch(TouchArgs)

touch event.

Trait Implementations

impl Clone for Motion[src]

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

Performs copy-assignment from source. Read more

impl Copy for Motion[src]

impl PartialEq<Motion> for Motion[src]

impl From<ControllerAxisArgs> for Motion[src]

impl From<TouchArgs> for Motion[src]

impl From<Motion> for Input[src]

impl Debug for Motion[src]

impl Serialize for Motion[src]

impl<'de> Deserialize<'de> for Motion[src]

Auto Trait Implementations

impl Send for Motion

impl Sync for Motion

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]