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

pub enum GesturePinchEvent {
    Begin(GesturePinchBeginEvent),
    Update(GesturePinchUpdateEvent),
    End(GesturePinchEndEvent),
}

Events for pinch gestures

Variants

Pinch gesture began

In-progress pinch gesture updated

Pinch gesture ended

Trait Implementations

impl AsRaw<libinput_event_gesture> for GesturePinchEvent[src]

impl Context for GesturePinchEvent[src]

impl Debug for GesturePinchEvent[src]

impl Eq for GesturePinchEvent[src]

impl EventTrait for GesturePinchEvent[src]

impl FromRaw<libinput_event_gesture> for GesturePinchEvent[src]

impl GesturePinchEventTrait for GesturePinchEvent[src]

impl Hash for GesturePinchEvent[src]

impl PartialEq<GesturePinchEvent> for GesturePinchEvent[src]

impl StructuralEq for GesturePinchEvent[src]

impl StructuralPartialEq for GesturePinchEvent[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> GestureEventTrait for T where
    T: AsRaw<libinput_event_gesture> + Context
[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.