Enum openssl::ssl::error::NonblockingSslError [−][src]
pub enum NonblockingSslError { SslError(SslError), WantRead, WantWrite, }
An error on a nonblocking stream.
Variants
SslError(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 Debug for NonblockingSslError
[src]
impl Debug for NonblockingSslError
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl Display for NonblockingSslError
[src]
impl Display for NonblockingSslError
fn fmt(&self, fmt: &mut Formatter) -> Result
[src]
fn fmt(&self, fmt: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl Error for NonblockingSslError
[src]
impl Error for NonblockingSslError
fn description(&self) -> &str
[src]
fn description(&self) -> &str
This method is soft-deprecated. Read more
fn cause(&self) -> Option<&Error>
[src]
fn cause(&self) -> Option<&Error>
The lower-level cause of this error, if any. Read more
impl From<SslError> for NonblockingSslError
[src]
impl From<SslError> for NonblockingSslError
fn from(e: SslError) -> NonblockingSslError
[src]
fn from(e: SslError) -> NonblockingSslError
Performs the conversion.
Auto Trait Implementations
impl Send for NonblockingSslError
impl Send for NonblockingSslError
impl Sync for NonblockingSslError
impl Sync for NonblockingSslError