pub enum Touch {
Start,
Move,
End,
Cancel,
}Expand description
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.
Trait Implementations§
source§impl<'de> Deserialize<'de> for Touch
impl<'de> Deserialize<'de> for Touch
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more