[][src]Enum koibumi_core::address::ParseError

pub enum ParseError {
    Base58Error(InvalidCharacter),
    TooShort {
        min: usize,
        len: usize,
    },
    InvalidChecksum {
        expected: [u8; 4],
        actual: [u8; 4],
    },
    IoError(Error),
    UnsupportedVersion(Version),
    InvalidHashLength {
        min: usize,
        max: usize,
        len: usize,
    },
    HashStartsWithZero,
}

An error which can be returned when parsing a Bitmessage address.

This error is used as the error type for the FromStr implementation for Address.

Variants

Base58Error(InvalidCharacter)

An error was caught when parsing a Base58 string. The actual error caught is returned as a payload of this variant.

TooShort

The length of the decoded bytes was too short to construct a Bitmessage address. The minimum length allowed and the actual length supplied are returned as payloads of this variant.

Fields of TooShort

min: usize

The minimum length allowed.

len: usize

The actual length supplied.

InvalidChecksum

The checksums did not match. The expected and the actual checksums are returned as payloads of this variant.

Fields of InvalidChecksum

expected: [u8; 4]

The expected checksum.

actual: [u8; 4]

The actual checksum.

IoError(Error)

A standard I/O error was caught during parsing a Bitmessage address. The actual error caught is returned as a payload of this variant.

UnsupportedVersion(Version)

Indicates that the version supplied was not supported. The actual version supplied is returned as a payload of this variant.

InvalidHashLength

The length of the hash was invalid to construct a Bitmessage address. The minimum and the maximum lengths allowed and the actual length supplied are returned as payloads of this variant.

Fields of InvalidHashLength

min: usize

The minimum length allowed.

max: usize

The maximum length allowed.

len: usize

The actual length supplied.

HashStartsWithZero

The hash starts with zero bytes.

Trait Implementations

impl Debug for ParseError[src]

impl Display for ParseError[src]

impl Error for ParseError[src]

impl From<Error> for ParseError[src]

impl From<InvalidCharacter> for ParseError[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.