Struct openssl::ssl::ErrorCode [−][src]
pub struct ErrorCode(_);
Expand description
An error code returned from SSL functions.
Implementations
The SSL session has been closed.
An attempt to read data from the underlying socket returned WouldBlock
.
Wait for read readiness and retry the operation.
An attempt to write data to the underlying socket returned WouldBlock
.
Wait for write readiness and retry the operation.
The client hello callback indicated that it needed to be retried.
Requires OpenSSL 1.1.1 or newer.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for ErrorCode
impl UnwindSafe for ErrorCode
Blanket Implementations
Mutably borrows from an owned value. Read more