Enum base64::Base64Error [] [src]

pub enum Base64Error {
    Utf8(Utf8Error),
    InvalidByte(usizeu8),
    InvalidLength,
}

Variants

Trait Implementations

impl Debug for Base64Error
[src]

Formats the value using the given formatter.

impl PartialEq for Base64Error
[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 Base64Error
[src]

impl Display for Base64Error
[src]

Formats the value using the given formatter. Read more

impl Error for Base64Error
[src]

A short description of the error. Read more

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

impl From<Utf8Error> for Base64Error
[src]

Performs the conversion.