pub enum AudError {
InvalidPrimaryPicType(PrimaryPicTypeError),
RbspError(BitReaderError),
}Expand description
Error type for AUD parsing.
Variants§
InvalidPrimaryPicType(PrimaryPicTypeError)
RbspError(BitReaderError)
Trait Implementations§
Source§impl From<BitReaderError> for AudError
impl From<BitReaderError> for AudError
Source§fn from(e: BitReaderError) -> Self
fn from(e: BitReaderError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for AudError
impl !UnwindSafe for AudError
impl Freeze for AudError
impl Send for AudError
impl Sync for AudError
impl Unpin for AudError
impl UnsafeUnpin for AudError
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