Struct conrod::event::Tap[][src]

pub struct Tap {
    pub id: Id,
    pub xy: Point,
}

All relevant information for a touch-screen tap event.

Fields

The unique identifier of the source of the touch.

The position at which the finger left the screen.

Methods

impl Tap
[src]

Returns a copy of the Tap relative to the given xy

Trait Implementations

impl Copy for Tap
[src]

impl Clone for Tap
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Tap
[src]

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

This method tests for !=.

impl Debug for Tap
[src]

Formats the value using the given formatter. Read more

impl From<Tap> for Widget
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for Tap

impl Sync for Tap