pub enum TouchEventName {
TouchStart,
TouchMove,
TouchEnd,
TouchCancel,
}Variants§
Trait Implementations§
Source§impl Clone for TouchEventName
impl Clone for TouchEventName
Source§fn clone(&self) -> TouchEventName
fn clone(&self) -> TouchEventName
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 TouchEventName
impl Debug for TouchEventName
Source§impl From<TouchEventName> for EventName
impl From<TouchEventName> for EventName
Source§fn from(value: TouchEventName) -> Self
fn from(value: TouchEventName) -> Self
Converts to this type from the input type.
Source§impl Hash for TouchEventName
impl Hash for TouchEventName
Source§impl PartialEq for TouchEventName
impl PartialEq for TouchEventName
impl Copy for TouchEventName
impl Eq for TouchEventName
impl StructuralPartialEq for TouchEventName
Auto Trait Implementations§
impl Freeze for TouchEventName
impl RefUnwindSafe for TouchEventName
impl Send for TouchEventName
impl Sync for TouchEventName
impl Unpin for TouchEventName
impl UnwindSafe for TouchEventName
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> ComponentProps for T
impl<T> ComponentProps for T
fn changed(&self, other: &(dyn ComponentProps + 'static)) -> bool
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more