Enum z85::FromZ85Error [] [src]

pub enum FromZ85Error {
    InvalidZ85Byte(u8usize),
    InvalidZ85Length(usize),
}

Variants

InvalidZ85Byte(u8usize)

The input contained a character not part of the Z85 format

InvalidZ85Length(usize)

The input had an invalid length

Trait Implementations

impl Copy for FromZ85Error
[src]

impl Clone for FromZ85Error
[src]

fn clone(&self) -> FromZ85Error

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Debug for FromZ85Error
[src]

fn fmt(&self, f: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Error for FromZ85Error
[src]

fn description(&self) -> &str

A short description of the error. Read more

fn cause(&self) -> Option<&Error>
1.0.0

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

impl Display for FromZ85Error
[src]

fn fmt(&self, f: &mut Formatter) -> Result

Formats the value using the given formatter.