Enum zmq_pw::DecodeError [] [src]

pub enum DecodeError {
    BadLength,
    NulError(NulError),
}

Errors that can occur while decoding Z85.

Variants

The input string slice's length was not a multiple of 5.

The input string slice had embedded NUL bytes.

Trait Implementations

impl Debug for DecodeError
[src]

Formats the value using the given formatter.

impl From<NulError> for DecodeError
[src]

Performs the conversion.

impl Display for DecodeError
[src]

Formats the value using the given formatter. Read more

impl Error for DecodeError
[src]

A short description of the error. Read more

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