Struct zaplib::PointerScrollEvent
source · [−]pub struct PointerScrollEvent {
pub window_id: usize,
pub digit: usize,
pub abs: Vec2,
pub rel: Vec2,
pub rect: Rect,
pub scroll: Vec2,
pub input_type: PointerInputType,
pub handled_x: bool,
pub handled_y: bool,
pub modifiers: KeyModifiers,
pub time: f64,
}
Expand description
See Event::PointerScroll
.
Fields
window_id: usize
digit: usize
abs: Vec2
rel: Vec2
TODO(JP): This is only set by Event::hits_pointer
; use an Option
or a different struct
?
rect: Rect
TODO(JP): This is only set by Event::hits_pointer
; use an Option
or a different struct
?
scroll: Vec2
input_type: PointerInputType
handled_x: bool
handled_y: bool
modifiers: KeyModifiers
time: f64
Trait Implementations
Returns the “default value” for a type. Read more
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for PointerScrollEvent
impl Send for PointerScrollEvent
impl Sync for PointerScrollEvent
impl Unpin for PointerScrollEvent
impl UnwindSafe for PointerScrollEvent
Blanket Implementations
Mutably borrows from an owned value. Read more