Enum source_map_mappings::Error [] [src]

#[repr(u32)]
pub enum Error { UnexpectedNegativeNumber, UnexpectedlyBigNumber, VlqUnexpectedEof, VlqInvalidBase64, VlqOverflow, }

Errors that can occur during parsing.

Variants

The mappings contained a negative line, column, source index, or name index.

The mappings contained a number larger than u32::MAX.

Reached EOF while in the middle of parsing a VLQ.

Encountered an invalid base 64 character while parsing a VLQ.

VLQ encountered a number that, when decoded, would not fit in an i64.

Trait Implementations

impl Copy for Error
[src]

impl Clone for Error
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Error
[src]

[src]

Formats the value using the given formatter.

impl From<Error> for Error
[src]

[src]

Performs the conversion.