Enum oysterpack_uid::uid::DecodingError[][src]

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

Types of errors that can occur while trying to decode a string into a ulid

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 From<DecodingError> for DecodingError
[src]

Performs the conversion.

Auto Trait Implementations