Struct zaplib::PointerMoveEvent
source · [−]pub struct PointerMoveEvent {
pub window_id: usize,
pub abs: Vec2,
pub abs_start: Vec2,
pub rel: Vec2,
pub rel_start: Vec2,
pub rect: Rect,
pub is_over: bool,
pub digit: usize,
pub input_type: PointerInputType,
pub modifiers: KeyModifiers,
pub time: f64,
}
Expand description
See Event::PointerMove
.
Fields
window_id: usize
abs: Vec2
abs_start: Vec2
TODO(JP): This is only set by Event::hits_pointer
; use an Option
or a different struct
?
rel: Vec2
TODO(JP): This is only set by Event::hits_pointer
; use an Option
or a different struct
?
rel_start: 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
?
is_over: bool
digit: usize
input_type: PointerInputType
modifiers: KeyModifiers
time: f64
Implementations
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 PointerMoveEvent
impl Send for PointerMoveEvent
impl Sync for PointerMoveEvent
impl Unpin for PointerMoveEvent
impl UnwindSafe for PointerMoveEvent
Blanket Implementations
Mutably borrows from an owned value. Read more