Enum conrod::input::Touch []

pub enum Touch {
    Start,
    Move,
    End,
    Cancel,
}

Stores the touch state.

Variants

The start of touch, for example a finger pressed down on a touch screen.

The move of touch, for example a finger moving while touching a touch screen.

The end of touch, for example taking a finger away from a touch screen.

The cancel of touch, for example the window loses focus.

Trait Implementations

impl PartialEq<Touch> for Touch

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

This method tests for !=.

impl Encodable for Touch

impl Debug for Touch

Formats the value using the given formatter.

impl Copy for Touch

impl Decodable for Touch

impl Clone for Touch

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more