[]Trait piston::controller::ControllerAxisEvent

pub trait ControllerAxisEvent {
    fn from_controller_axis_args(
        args: ControllerAxisArgs,
        old_event: &Self
    ) -> Option<Self>;
fn controller_axis<U, F>(&self, f: F) -> Option<U>
    where
        F: FnMut(ControllerAxisArgs) -> U
; fn controller_axis_args(&self) -> Option<ControllerAxisArgs> { ... } }

The position of a controller axis changed.

Required methods

fn from_controller_axis_args(
    args: ControllerAxisArgs,
    old_event: &Self
) -> Option<Self>

Creates a controller axis event.

Preserves time stamp from original input event, if any.

fn controller_axis<U, F>(&self, f: F) -> Option<U> where
    F: FnMut(ControllerAxisArgs) -> U, 

Calls closure if this is a controller axis event.

Loading content...

Provided methods

fn controller_axis_args(&self) -> Option<ControllerAxisArgs>

Returns controller axis arguments.

Loading content...

Implementors

impl ControllerAxisEvent for Event

Loading content...