Struct conrod::input::ControllerAxisArgs[][src]

pub struct ControllerAxisArgs {
    pub id: i32,
    pub axis: u8,
    pub position: f64,
}

Components of a controller axis move event. Not guaranteed consistent across backends.

Fields

Which controller moved.

The axis that moved.

Position of the controller. Usually [-1.0, 1.0], though backends may use a different range for various devices.

Methods

impl ControllerAxisArgs
[src]

Create a new ControllerAxisArgs object. Intended for use by backends when emitting events.

Trait Implementations

impl Clone for ControllerAxisArgs
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ControllerAxisArgs
[src]

Formats the value using the given formatter. Read more

impl From<ControllerAxisArgs> for Motion
[src]

Performs the conversion.

impl From<ControllerAxisArgs> for Input
[src]

Performs the conversion.

impl Serialize for ControllerAxisArgs
[src]

Serialize this value into the given Serde serializer. Read more

impl Copy for ControllerAxisArgs
[src]

impl PartialEq<ControllerAxisArgs> for ControllerAxisArgs
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

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

Deserialize this value from the given Serde deserializer. Read more

Auto Trait Implementations