Struct openssl::ssl::ErrorCode [−][src]
An error code returned from SSL functions.
Implementations
impl ErrorCode
[src]
pub fn from_raw(raw: c_int) -> ErrorCode
[src]
pub fn as_raw(&self) -> c_int
[src]
pub const ZERO_RETURN: ErrorCode
[src]
The SSL session has been closed.
pub const WANT_READ: ErrorCode
[src]
An attempt to read data from the underlying socket returned WouldBlock
.
Wait for read readiness and retry the operation.
pub const WANT_WRITE: ErrorCode
[src]
An attempt to write data to the underlying socket returned WouldBlock
.
Wait for write readiness and retry the operation.
pub const SYSCALL: ErrorCode
[src]
A non-recoverable IO error occurred.
pub const SSL: ErrorCode
[src]
An error occurred in the SSL library.
pub const WANT_CLIENT_HELLO_CB: ErrorCode
[src]
The client hello callback indicated that it needed to be retried.
Requires OpenSSL 1.1.1 or newer.
Trait Implementations
impl Clone for ErrorCode
[src]
impl Copy for ErrorCode
[src]
impl Debug for ErrorCode
[src]
impl Eq for ErrorCode
[src]
impl PartialEq<ErrorCode> for ErrorCode
[src]
impl StructuralEq for ErrorCode
[src]
impl StructuralPartialEq for ErrorCode
[src]
Auto Trait Implementations
impl RefUnwindSafe for ErrorCode
impl Send for ErrorCode
impl Sync for ErrorCode
impl Unpin for ErrorCode
impl UnwindSafe for ErrorCode
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,