pub enum PressInteraction {
Press(PressInteractionPress),
Release(PressInteractionRelease),
Cancel(PressInteractionCancel),
}Variants§
Trait Implementations§
Source§impl Clone for PressInteraction
impl Clone for PressInteraction
Source§fn clone(&self) -> PressInteraction
fn clone(&self) -> PressInteraction
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PressInteraction
impl Debug for PressInteraction
Source§impl PartialEq for PressInteraction
impl PartialEq for PressInteraction
Source§fn eq(&self, other: &PressInteraction) -> bool
fn eq(&self, other: &PressInteraction) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for PressInteraction
impl StructuralPartialEq for PressInteraction
Auto Trait Implementations§
impl Freeze for PressInteraction
impl RefUnwindSafe for PressInteraction
impl Send for PressInteraction
impl Sync for PressInteraction
impl Unpin for PressInteraction
impl UnsafeUnpin for PressInteraction
impl UnwindSafe for PressInteraction
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