Enum base58::FromBase58Error [] [src]

pub enum FromBase58Error {
    InvalidBase58Character(char, usize),
    InvalidBase58Length,
}

Errors that can occur when decoding base58 encoded string.

Variants

InvalidBase58Character

The input contained a character which is not a part of the base58 format.

InvalidBase58Length

The input had invalid length.

Trait Implementations

Derived Implementations

impl PartialEq for FromBase58Error
[src]

fn eq(&self, __arg_0: &FromBase58Error) -> bool

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

fn ne(&self, __arg_0: &FromBase58Error) -> bool

This method tests for !=.

impl Debug for FromBase58Error
[src]

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

Formats the value using the given formatter.