pub enum TapSensitivity {
High,
Medium,
Low,
UnknownVariant(u8),
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for TapSensitivity
impl Clone for TapSensitivity
Source§fn clone(&self) -> TapSensitivity
fn clone(&self) -> TapSensitivity
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 TapSensitivity
impl Debug for TapSensitivity
Source§impl Display for TapSensitivity
impl Display for TapSensitivity
Source§impl From<&str> for TapSensitivity
impl From<&str> for TapSensitivity
Source§impl From<i64> for TapSensitivity
impl From<i64> for TapSensitivity
Source§impl From<u8> for TapSensitivity
impl From<u8> for TapSensitivity
Source§impl Hash for TapSensitivity
impl Hash for TapSensitivity
Source§impl Ord for TapSensitivity
impl Ord for TapSensitivity
Source§fn cmp(&self, other: &TapSensitivity) -> Ordering
fn cmp(&self, other: &TapSensitivity) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for TapSensitivity
impl PartialEq for TapSensitivity
Source§impl PartialOrd for TapSensitivity
impl PartialOrd for TapSensitivity
Source§impl Serialize for TapSensitivity
impl Serialize for TapSensitivity
impl Copy for TapSensitivity
impl Eq for TapSensitivity
impl StructuralPartialEq for TapSensitivity
Auto Trait Implementations§
impl Freeze for TapSensitivity
impl RefUnwindSafe for TapSensitivity
impl Send for TapSensitivity
impl Sync for TapSensitivity
impl Unpin for TapSensitivity
impl UnwindSafe for TapSensitivity
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