Enum ParseError

Source
pub enum ParseError<'a> {
    DwordToUsize(Dword),
    InvalidFrameSize(Dword),
    InvalidChunkSize(Dword),
    Utf8Error(Utf8Error),
    PaletteError(PaletteError),
    InvalidFrameRange(Word, Word),
    LayerIndexOutOfBounds,
    InvalidPropertyType(Word),
    Nom(Error<&'a [u8]>),
}

Variants§

§

DwordToUsize(Dword)

This variant is used when the conversion between DWORD (u32) to usize fails. The only way this can happen is when running this code on a 16-bit system.

§

InvalidFrameSize(Dword)

This variant is used when the frame size is <4

§

InvalidChunkSize(Dword)

This variant is used when the chunk size is <4

§

Utf8Error(Utf8Error)

This variant is used when a string does not contain valid UTF-8 data and str::from_utf8 returned an error.

§

PaletteError(PaletteError)

The uses index colors but the palette could not be generated due to errors in the palette chunks.

§

InvalidFrameRange(Word, Word)

The range of frame indices was invalid (from > to)

§

LayerIndexOutOfBounds

This variant is used when a layer index is out of bounds (layer_index >= layer_count)

§

InvalidPropertyType(Word)

This variant is used when a unsupported property type is found in the user data.

§

Nom(Error<&'a [u8]>)

This variant is used when the nom combinators return an error.

Trait Implementations§

Source§

impl<'a> Debug for ParseError<'a>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'a> Display for ParseError<'a>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl<'a> Error for ParseError<'a>

1.30.0 · Source§

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

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · Source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
Source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type-based access to context intended for error reports. Read more
Source§

impl<'a> FromExternalError<&'a [u8], Utf8Error> for ParseError<'a>

Source§

fn from_external_error(_input: &'a [u8], _kind: ErrorKind, e: Utf8Error) -> Self

Creates a new error from an input position, an ErrorKind indicating the wrapping parser, and an external error
Source§

impl<'a> ParseError<&'a [u8]> for ParseError<'a>

Source§

fn from_error_kind(input: &'a [u8], kind: ErrorKind) -> Self

Creates an error from the input position and an ErrorKind
Source§

fn append(_input: &[u8], _kind: ErrorKind, other: Self) -> Self

Combines an existing error with a new one created from the input position and an ErrorKind. This is useful when backtracking through a parse tree, accumulating error context on the way
Source§

fn from_char(input: I, _: char) -> Self

Creates an error from an input position and an expected character
Source§

fn or(self, other: Self) -> Self

Combines two existing errors. This function is used to compare errors generated in various branches of alt.

Auto Trait Implementations§

§

impl<'a> Freeze for ParseError<'a>

§

impl<'a> RefUnwindSafe for ParseError<'a>

§

impl<'a> Send for ParseError<'a>

§

impl<'a> Sync for ParseError<'a>

§

impl<'a> Unpin for ParseError<'a>

§

impl<'a> UnwindSafe for ParseError<'a>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.