pub enum TouchEventType {
TouchStart,
TouchEnd,
TouchMove,
TouchCancel,
}Expand description
Type of touch event.
Variants§
Trait Implementations§
Source§impl Clone for TouchEventType
impl Clone for TouchEventType
Source§fn clone(&self) -> TouchEventType
fn clone(&self) -> TouchEventType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TouchEventType
impl Debug for TouchEventType
Source§impl Serialize for TouchEventType
impl Serialize for TouchEventType
impl Copy for TouchEventType
Auto Trait Implementations§
impl Freeze for TouchEventType
impl RefUnwindSafe for TouchEventType
impl Send for TouchEventType
impl Sync for TouchEventType
impl Unpin for TouchEventType
impl UnwindSafe for TouchEventType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more