GestureEndEvent

Trait GestureEndEvent 

Source
pub trait GestureEndEvent<B: InputBackend>: Event<B> {
    // Required method
    fn cancelled(&self) -> bool;
}
Expand description

Trait for gesture end events.

Required Methods§

Source

fn cancelled(&self) -> bool

True if event was cancelled.

Implementors§

Source§

impl<B: InputBackend> GestureEndEvent<B> for UnusedEvent

Source§

impl<T> GestureEndEvent<LibinputInputBackend> for T

Available on crate feature backend_libinput only.