Enum rusty_ulid::crockford::DecodingError[][src]

pub enum DecodingError {
    InvalidLength,
    InvalidChar(char),
    DataTypeOverflow,
}

Error that can occur while decoding a crockford Base32 string.

Variants

The length of the parsed string does not conform to requirements.

The parsed string contains a character that is not allowed in a crockford Base32 string.

Parsing the string overflowed the result value bits.

Trait Implementations

impl Debug for DecodingError
[src]

Formats the value using the given formatter. Read more

impl PartialEq for DecodingError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Error for DecodingError
[src]

This method is soft-deprecated. Read more

The lower-level cause of this error, if any. Read more

impl Display for DecodingError
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations