Enum avif_parse::Error [−][src]
pub enum Error {
InvalidData(&'static str),
Unsupported(&'static str),
UnexpectedEOF,
Io(Error),
NoMoov,
OutOfMemory,
}Expand description
Describes parser failures.
This enum wraps the standard io::Error type, unified with
our own parser error states and those of crates we use.
Variants
InvalidData(&'static str)Parse error caused by corrupt or malformed data.
Unsupported(&'static str)Parse error caused by limited parser support rather than invalid data.
Reflect std::io::ErrorKind::UnexpectedEof for short data.
Io(Error)Propagate underlying errors from std::io.
read_mp4 terminated without detecting a moov box.
Out of memory
Trait Implementations
impl Error for Error[src]
impl Error for Error[src]fn source(&self) -> Option<&(dyn Error + 'static)>1.30.0[src]
fn source(&self) -> Option<&(dyn Error + 'static)>1.30.0[src]The lower-level source of this error, if any. Read more
fn backtrace(&self) -> Option<&Backtrace>[src]
fn backtrace(&self) -> Option<&Backtrace>[src]🔬 This is a nightly-only experimental API. (
backtrace)Returns a stack backtrace, if available, of where this error occurred. Read more
fn description(&self) -> &str1.0.0[src]
fn description(&self) -> &str1.0.0[src]👎 Deprecated since 1.42.0:
use the Display impl or to_string()
impl From<BitReaderError> for Error[src]
impl From<BitReaderError> for Error[src]fn from(_: BitReaderError) -> Error[src]
fn from(_: BitReaderError) -> Error[src]Performs the conversion.
impl From<FromUtf8Error> for Error[src]
impl From<FromUtf8Error> for Error[src]fn from(_: FromUtf8Error) -> Error[src]
fn from(_: FromUtf8Error) -> Error[src]Performs the conversion.
impl From<TryFromIntError> for Error[src]
impl From<TryFromIntError> for Error[src]fn from(_: TryFromIntError) -> Error[src]
fn from(_: TryFromIntError) -> Error[src]Performs the conversion.
Auto Trait Implementations
impl !RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl !UnwindSafe for Error
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more