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. Read more

impl Display for NonblockingSslError
[src]
[+]

[]

Formats the value using the given formatter. Read more

impl Error for NonblockingSslError
[src]
[+]

[]

This method is soft-deprecated. Read more

[]

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

impl From<SslError> for NonblockingSslError
[src]
[+]

[]

Performs the conversion.

Auto Trait Implementations

impl Send for NonblockingSslError

impl Sync for NonblockingSslError