Enum rustc_serialize::base64::FromBase64Error[][src]

pub enum FromBase64Error {
    InvalidBase64Byte(u8usize),
    InvalidBase64Length,
}
[]

Errors that can occur when decoding a base64 encoded string

Variants

[]

The input contained a character not part of the base64 format

[]

The input had an invalid length

Trait Implementations

impl Clone for FromBase64Error
[src]
[+]

[]

Returns a copy of the value. Read more

[]

Performs copy-assignment from source. Read more

impl Copy for FromBase64Error
[src]

impl Debug for FromBase64Error
[src]
[+]

[]

Formats the value using the given formatter. Read more

impl Error for FromBase64Error
[src]
[+]

[]

This method is soft-deprecated. Read more

[]

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

impl Display for FromBase64Error
[src]
[+]

[]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for FromBase64Error

impl Sync for FromBase64Error