Enum h256only::error::Error [] [src]

pub enum Error {
    Format,
    Base64(FromBase64Error),
    Decode(DecoderError),
    Encode(EncoderError),
    Json(ErrorCode),
    Parse(ParserError),
    Utf8(FromUtf8Error),
}

Variants

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter.

impl From<FromBase64Error> for Error
[src]

Performs the conversion.

impl From<DecoderError> for Error
[src]

Performs the conversion.

impl From<EncoderError> for Error
[src]

Performs the conversion.

impl From<ErrorCode> for Error
[src]

Performs the conversion.

impl From<ParserError> for Error
[src]

Performs the conversion.

impl From<FromUtf8Error> for Error
[src]

Performs the conversion.