pub trait GestureEndEvent: AsRaw<libinput_event_gesture> {
    fn cancelled(&self) -> bool { ... }
}
Expand description

Common functions for events noting the end of a gesture

Provided Methods

Return if the gesture ended normally, or if it was cancelled.

Implementors