pub enum BitsPerSampleError {
InvalidValues {
values: Vec<u16>,
},
}Variants§
Implementations§
Trait Implementations§
Source§impl Debug for BitsPerSampleError
impl Debug for BitsPerSampleError
Source§impl Display for BitsPerSampleError
impl Display for BitsPerSampleError
Source§impl Fail for BitsPerSampleError
impl Fail for BitsPerSampleError
Source§fn cause(&self) -> Option<&dyn Fail>
fn cause(&self) -> Option<&dyn Fail>
Returns a reference to the underlying cause of this failure, if it
is an error that wraps other errors. Read more
Source§fn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
Returns a reference to the
Backtrace carried by this failure, if it
carries one. Read moreSource§impl From<BitsPerSampleError> for DecodeError
impl From<BitsPerSampleError> for DecodeError
Source§fn from(err: BitsPerSampleError) -> DecodeError
fn from(err: BitsPerSampleError) -> DecodeError
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for BitsPerSampleError
impl RefUnwindSafe for BitsPerSampleError
impl Send for BitsPerSampleError
impl Sync for BitsPerSampleError
impl Unpin for BitsPerSampleError
impl UnwindSafe for BitsPerSampleError
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