Struct nannou::ui::backend::glium::glium::backend::glutin::glutin::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

unique identifier of a finger.

Trait Implementations

impl Clone for Touch

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Touch

Formats the value using the given formatter. Read more

impl Copy for Touch

Auto Trait Implementations

impl Send for Touch

impl Sync for Touch