pub enum HapticError {
LengthMismatch {
timings: usize,
amplitudes: usize,
},
Empty,
ZeroDuration,
RepeatOutOfRange {
index: usize,
len: usize,
},
TooManySteps {
len: usize,
max: usize,
},
}Expand description
Why a haptic pattern could not be built.
Variants§
LengthMismatch
Timings and amplitudes must describe the same number of steps.
Fields
Empty
A waveform needs at least one step.
ZeroDuration
A waveform whose timings are all zero would never play.
RepeatOutOfRange
The repeat index must point at a step of the waveform.
TooManySteps
The waveform is longer than the platform vibrator accepts.
Trait Implementations§
Source§impl Clone for HapticError
impl Clone for HapticError
Source§fn clone(&self) -> HapticError
fn clone(&self) -> HapticError
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 HapticError
impl Debug for HapticError
Source§impl Display for HapticError
impl Display for HapticError
impl Eq for HapticError
Source§impl Error for HapticError
impl Error for HapticError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl PartialEq for HapticError
impl PartialEq for HapticError
impl StructuralPartialEq for HapticError
Auto Trait Implementations§
impl Freeze for HapticError
impl RefUnwindSafe for HapticError
impl Send for HapticError
impl Sync for HapticError
impl Unpin for HapticError
impl UnsafeUnpin for HapticError
impl UnwindSafe for HapticError
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