Struct zaplib::PointerHoverEvent
source · [−]pub struct PointerHoverEvent {
pub window_id: usize,
pub digit: usize,
pub abs: Vec2,
pub rel: Vec2,
pub rect: Rect,
pub any_down: bool,
pub hover_state: HoverState,
pub modifiers: KeyModifiers,
pub time: f64,
/* private fields */
}Expand description
See Event::PointerHover.
Fields
window_id: usizedigit: usizeabs: Vec2rel: Vec2TODO(JP): This is only set by Event::hits_pointer; use an Option or a different struct?
rect: RectTODO(JP): This is only set by Event::hits_pointer; use an Option or a different struct?
any_down: boolhover_state: HoverStatemodifiers: KeyModifierstime: f64Trait 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 PointerHoverEvent
impl Send for PointerHoverEvent
impl Sync for PointerHoverEvent
impl Unpin for PointerHoverEvent
impl UnwindSafe for PointerHoverEvent
Blanket Implementations
Mutably borrows from an owned value. Read more