Struct nannou::ui::input::state::touch::Touch[][src]

pub struct Touch {
    pub start: Start,
    pub xy: [f64; 2],
    pub widget: Option<NodeIndex<u32>>,
}

All state stored for a Touch interaction in progress.

Fields

The Start of the touch interaction.

The last recorded position of the finger on the window.

The widget currently being touched.

Trait Implementations

impl Clone for Touch
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Touch
[src]

Formats the value using the given formatter. Read more

impl Copy for Touch
[src]

impl PartialEq<Touch> for Touch
[src]

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

This method tests for !=.

Auto Trait Implementations

impl Send for Touch

impl Sync for Touch