Enum input::event::gesture::GestureSwipeEvent [] [src]

pub enum GestureSwipeEvent {
    Begin(GestureSwipeBeginEvent),
    Update(GestureSwipeUpdateEvent),
    End(GestureSwipeEndEvent),
}

Events for swipe gestures

Variants

Swipe gesture began

In-progress swipe gesture updated

Swipe gesture ended

Trait Implementations

impl Debug for GestureSwipeEvent
[src]

Formats the value using the given formatter.

impl PartialEq for GestureSwipeEvent
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for GestureSwipeEvent
[src]

impl Hash for GestureSwipeEvent
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl GestureSwipeEventTrait for GestureSwipeEvent
[src]

Convert into a general GestureSwipeEvent

impl EventTrait for GestureSwipeEvent
[src]

Convert into a general Event again

Get the libinput context from the event.

Return the device associated with this event. Read more

impl FromRaw<libinput_event_gesture> for GestureSwipeEvent
[src]

Create a new instance of this type from a raw pointer. Read more

impl AsRaw<libinput_event_gesture> for GestureSwipeEvent
[src]

Receive a raw pointer representing this type.