pub trait PointerEventTrait: AsRaw<libinput_event_pointer> + Context {
    fn time(&self) -> u32 { ... }
    fn time_usec(&self) -> u64 { ... }
    fn into_pointer_event(self) -> PointerEvent
    where
        Self: Sized
, { ... } }
Expand description

Common functions for all Pointer-Events implement.

Provided Methods

The event time for this event

The event time for this event in microseconds

Convert into a general TouchEvent again

Implementors