Enum openssl::ssl::error::NonblockingSslError [] [src]

pub enum NonblockingSslError {
    SslError(SslError),
    WantRead,
    WantWrite,
}

An error on a nonblocking stream.

Variants

A standard SSL error occurred.

The OpenSSL library wants data from the remote socket; the caller should wait for read readiness.

The OpenSSL library wants to send data to the remote socket; the caller should wait for write readiness.

Trait Implementations

impl Debug for NonblockingSslError
[src]

Formats the value using the given formatter.

impl Display for NonblockingSslError
[src]

Formats the value using the given formatter.

impl Error for NonblockingSslError
[src]

A short description of the error. Read more

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

impl From<SslError> for NonblockingSslError
[src]

Performs the conversion.