Struct i_slint_core::items::PointerEvent
source · #[repr(C)]pub struct PointerEvent {
pub button: PointerEventButton,
pub kind: PointerEventKind,
pub modifiers: KeyboardModifiers,
}Expand description
Represents a Pointer event sent by the windowing system.
This structure is passed to the pointer-event callback of the TouchArea element.
Fields§
The button that was pressed or released
kind: PointerEventKindThe kind of the event
modifiers: KeyboardModifiersThe keyboard modifiers pressed during the event
Trait Implementations§
source§impl Clone for PointerEvent
impl Clone for PointerEvent
source§fn clone(&self) -> PointerEvent
fn clone(&self) -> PointerEvent
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for PointerEvent
impl Debug for PointerEvent
source§impl Default for PointerEvent
impl Default for PointerEvent
source§fn default() -> PointerEvent
fn default() -> PointerEvent
Returns the “default value” for a type. Read more
source§impl PartialEq for PointerEvent
impl PartialEq for PointerEvent
source§fn eq(&self, other: &PointerEvent) -> bool
fn eq(&self, other: &PointerEvent) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for PointerEvent
Auto Trait Implementations§
impl RefUnwindSafe for PointerEvent
impl Send for PointerEvent
impl Sync for PointerEvent
impl Unpin for PointerEvent
impl UnwindSafe for PointerEvent
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more