[]Trait piston_window::MouseScrollEvent

pub trait MouseScrollEvent {
    fn from_pos(pos: [f64; 2], old_event: &Self) -> Option<Self>;
fn mouse_scroll<U, F>(&self, f: F) -> Option<U>
    where
        F: FnMut([f64; 2]) -> U
; fn mouse_scroll_args(&self) -> Option<[f64; 2]> { ... } }

The scroll of the mouse wheel.

Required methods

fn from_pos(pos: [f64; 2], old_event: &Self) -> Option<Self>

Creates a mouse scroll event.

Preserves time stamp from original input event, if any.

fn mouse_scroll<U, F>(&self, f: F) -> Option<U> where
    F: FnMut([f64; 2]) -> U, 

Calls a closure if this is a mouse scroll event.

Loading content...

Provided methods

fn mouse_scroll_args(&self) -> Option<[f64; 2]>

Returns mouse scroll arguments.

Loading content...

Implementors

impl MouseScrollEvent for Event

Loading content...