pub trait GestureSwipeUpdateEvent<B: InputBackend>: Event<B> {
// Required methods
fn delta_x(&self) -> f64;
fn delta_y(&self) -> f64;
// Provided method
fn delta(&self) -> Point<f64, Logical> { ... }
}Expand description
Trait for gesture swipe update event.
Required Methods§
Provided Methods§
Implementations on Foreign Types§
Source§impl GestureSwipeUpdateEvent<LibinputInputBackend> for GestureSwipeUpdateEvent
Available on crate feature backend_libinput only.
impl GestureSwipeUpdateEvent<LibinputInputBackend> for GestureSwipeUpdateEvent
Available on crate feature
backend_libinput only.