Enum base65536::Error [] [src]

pub enum Error {
    InvalidCodePoint(usizechar),
    InvalidLength,
}

Represents an error in the decoding process.

Variants

A code point not valid in base65536 was found in the input stream. Consider using the ignore_garbage option.

The usize is the offset from the begining of the input stream where the invalid code point was found.

The char is the invalid code point.

The base65536 stream continued after a terminating padding byte.

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter.

impl PartialEq for Error
[src]

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

This method tests for !=.

impl Eq for Error
[src]

impl Display for Error
[src]

Formats the value using the given formatter. Read more

impl Error for Error
[src]

A short description of the error. Read more

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