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.
WantReadThe OpenSSL library wants data from the remote socket; the caller should wait for read readiness.
WantWriteThe 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 NonblockingSslErrorfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Display for NonblockingSslError[src]
impl Display for NonblockingSslErrorfn fmt(&self, fmt: &mut Formatter) -> Result[src]
fn fmt(&self, fmt: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Error for NonblockingSslError[src]
impl Error for NonblockingSslErrorfn description(&self) -> &str[src]
fn description(&self) -> &strThis 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 NonblockingSslErrorfn from(e: SslError) -> NonblockingSslError[src]
fn from(e: SslError) -> NonblockingSslErrorPerforms the conversion.
Auto Trait Implementations
impl Send for NonblockingSslError
impl Send for NonblockingSslErrorimpl Sync for NonblockingSslError
impl Sync for NonblockingSslError