Struct openssl::ssl::RetryError
[−]
[src]
pub struct RetryError;
An error indicating that the operation can be immediately retried.
OpenSSL's SSL_read and SSL_write functions can return SSL_ERROR_WANT_READ even when
the underlying socket is performing blocking IO in certain cases. When this happens, the
the operation can be immediately retried.
To signal this event, the io::Error inside of Error::WantRead will be constructed around
a RetryError.
Trait Implementations
impl Debug for RetryError[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl Display for RetryError[src]
fn fmt(&self, fmt: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more