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

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

An error on a nonblocking stream.

Variants

SslError

A standard SSL error occurred.

WantRead

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

WantWrite

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

Trait Implementations

impl Display for NonblockingSslError

fn fmt(&self, fmt: &mut Formatter) -> Result

impl Error for NonblockingSslError

fn description(&self) -> &str

fn cause(&self) -> Option<&Error>

impl From<SslError> for NonblockingSslError

fn from(e: SslError) -> NonblockingSslError

Derived Implementations

impl Debug for NonblockingSslError

fn fmt(&self, __arg_0: &mut Formatter) -> Result