Enum bs58::FromBase58Error [] [src]

pub enum FromBase58Error {
    InvalidCharacter {
        character: char,
        index: usize,
    },
}

Errors that could occur when decoding a Base58 encoded string.

Variants

The input contained a character that was not part of the current Base58 alphabet.

Fields

The unexpected character.

The index in the input string the character was at.

Trait Implementations

impl Copy for FromBase58Error
[src]

impl Clone for FromBase58Error
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for FromBase58Error
[src]

Formats the value using the given formatter.

impl Eq for FromBase58Error
[src]

impl PartialEq for FromBase58Error
[src]

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

This method tests for !=.

impl Error for FromBase58Error
[src]

A short description of the error. Read more

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

impl Display for FromBase58Error
[src]

Formats the value using the given formatter.