Enum sasl::Error [] [src]

pub enum Error {
    OpenSslErrorStack(ErrorStack),
    SaslError(String),
}

A wrapper enum for things that could go wrong in this crate.

Variants

An error in OpenSSL.

An error in a SASL mechanism.

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter.

impl From<ErrorStack> for Error
[src]

Performs the conversion.