[][src]Struct winit::Touch

pub struct Touch {
    pub device_id: DeviceId,
    pub phase: TouchPhase,
    pub location: LogicalPosition,
    pub id: u64,
}

Represents touch event

Every time user touches screen new Start event with some finger id is generated. When the finger is removed from the screen End event with same id is generated.

For every id there will be at least 2 events with phases Start and End (or Cancelled). There may be 0 or more Move events.

Depending on platform implementation id may or may not be reused by system after End event.

Gesture regonizer using this event should assume that Start event received with same id as previously received End event is a new finger and has nothing to do with an old one.

Touch may be cancelled if for example window lost focus.

Fields

device_id: DeviceIdphase: TouchPhaselocation: LogicalPositionid: u64

unique identifier of a finger.

Trait Implementations

impl Clone for Touch[src]

impl Copy for Touch[src]

impl PartialEq<Touch> for Touch[src]

impl Debug for Touch[src]

impl StructuralPartialEq for Touch[src]

Auto Trait Implementations

impl Send for Touch

impl Sync for Touch

impl Unpin for Touch

impl UnwindSafe for Touch

impl RefUnwindSafe for Touch

Blanket Implementations

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

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

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

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

impl<T> SetParameter for T