pub trait GestureEndEvent<B: InputBackend>: Event<B> {
// Required method
fn cancelled(&self) -> bool;
}Expand description
Trait for gesture end events.
Required Methods§
Implementors§
impl<B: InputBackend> GestureEndEvent<B> for UnusedEvent
impl<T> GestureEndEvent<LibinputInputBackend> for T
Available on crate feature
backend_libinput only.