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]> { ... } }
Expand description

The scroll of the mouse wheel.

Required methods

Creates a mouse scroll event.

Preserves time stamp from original input event, if any.

Calls a closure if this is a mouse scroll event.

Provided methods

Returns mouse scroll arguments.

Implementors