pub enum HapticEffect {
Click,
Tick,
DoubleClick,
HeavyClick,
}Expand description
A system-defined vibration primitive.
These map to Android’s VibrationEffect.EFFECT_* constants, which are tuned
per device by the manufacturer and therefore feel more native than a
hand-timed one-shot of the same length.
Variants§
Click
VibrationEffect.EFFECT_CLICK.
Tick
VibrationEffect.EFFECT_TICK — the lightest primitive.
DoubleClick
VibrationEffect.EFFECT_DOUBLE_CLICK.
HeavyClick
VibrationEffect.EFFECT_HEAVY_CLICK.
Implementations§
Source§impl HapticEffect
impl HapticEffect
Sourcepub fn closest_feedback(self) -> HapticFeedback
pub fn closest_feedback(self) -> HapticFeedback
The closest HapticFeedback constant, used by the trait’s defaulted
bodies and by backends without predefined effects.
Trait Implementations§
Source§impl Clone for HapticEffect
impl Clone for HapticEffect
Source§fn clone(&self) -> HapticEffect
fn clone(&self) -> HapticEffect
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 moreimpl Copy for HapticEffect
Source§impl Debug for HapticEffect
impl Debug for HapticEffect
impl Eq for HapticEffect
Source§impl PartialEq for HapticEffect
impl PartialEq for HapticEffect
impl StructuralPartialEq for HapticEffect
Auto Trait Implementations§
impl Freeze for HapticEffect
impl RefUnwindSafe for HapticEffect
impl Send for HapticEffect
impl Sync for HapticEffect
impl Unpin for HapticEffect
impl UnsafeUnpin for HapticEffect
impl UnwindSafe for HapticEffect
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