pub trait MouseRelativeEvent {
    fn from_pos(x: [f64; 2], old_event: &Self) -> Option<Self>;
fn mouse_relative<U, F>(&self, f: F) -> Option<U>
    where
        F: FnMut([f64; 2]) -> U
; fn mouse_relative_args(&self) -> Option<[f64; 2]> { ... } }
Expand description

The relative movement of mouse cursor.

These events might be emitted even the cursor is captured by the window.

Required methods

Creates a mouse relative event.

Preserves time stamp from original input event, if any.

Calls closure if this is a mouse relative event.

Provided methods

Returns mouse relative arguments.

Implementors