Struct input::controller::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

id: i32

Which controller moved.

axis: u8

The axis that moved.

position: f64

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

Methods

impl ControllerAxisArgs
[src]

fn new(id: i32, axis: u8, position: f64) -> Self

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

Trait Implementations

impl Debug for ControllerAxisArgs
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl PartialEq for ControllerAxisArgs
[src]

fn eq(&self, __arg_0: &ControllerAxisArgs) -> bool

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

fn ne(&self, __arg_0: &ControllerAxisArgs) -> bool

This method tests for !=.

impl Encodable for ControllerAxisArgs
[src]

fn encode<__S: Encoder>(&self, __arg_0: &mut __S) -> Result<(), __S::Error>

impl Decodable for ControllerAxisArgs
[src]

fn decode<__D: Decoder>(__arg_0: &mut __D) -> Result<ControllerAxisArgs, __D::Error>

impl Clone for ControllerAxisArgs
[src]

fn clone(&self) -> ControllerAxisArgs

Returns a copy of the value. Read more

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

Performs copy-assignment from source. Read more

impl Copy for ControllerAxisArgs
[src]