Trait input::event::touch::TouchEventTrait [] [src]

pub trait TouchEventTrait: AsRaw<libinput_event_touch> {
    fn time(&self) -> u32 { ... }
    fn time_usec(&self) -> u64 { ... }
    fn into_touch_event(self) -> TouchEvent where Self: Sized { ... }
}

Common functions all Touch-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