Enum input::Touch
[−]
[src]
pub enum Touch { Start, Move, End, Cancel, }
Stores the touch state.
Variants
Start | The start of touch, for example a finger pressed down on a touch screen. | |
Move | The move of touch, for example a finger moving while touching a touch screen. | |
End | The end of touch, for example taking a finger away from a touch screen. | |
Cancel | The cancel of touch, for example the window loses focus. |