Enum tcp_stream::HandshakeError
source · pub enum HandshakeError {
WouldBlock(MidHandshakeTlsStream),
Failure(Error),
}Expand description
An error returned while performing the handshake
Variants§
WouldBlock(MidHandshakeTlsStream)
We hit WouldBlock during handshake
Failure(Error)
We hit a critical failure
Implementations§
source§impl HandshakeError
impl HandshakeError
sourcepub fn into_mid_handshake_tls_stream(self) -> Result<MidHandshakeTlsStream>
pub fn into_mid_handshake_tls_stream(self) -> Result<MidHandshakeTlsStream>
Try and get the inner mid handshake TLS stream from this error
Trait Implementations§
source§impl Debug for HandshakeError
impl Debug for HandshakeError
source§impl Display for HandshakeError
impl Display for HandshakeError
source§impl Error for HandshakeError
impl Error for HandshakeError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<Error> for HandshakeError
impl From<Error> for HandshakeError
source§impl From<ErrorStack> for HandshakeError
impl From<ErrorStack> for HandshakeError
source§fn from(error: OpenSslErrorStack) -> Self
fn from(error: OpenSslErrorStack) -> Self
Converts to this type from the input type.
source§impl From<HandshakeError<TcpStream>> for HandshakeError
impl From<HandshakeError<TcpStream>> for HandshakeError
source§fn from(error: RustlsHandshakeError) -> Self
fn from(error: RustlsHandshakeError) -> Self
Converts to this type from the input type.
source§impl From<HandshakeError<TcpStream>> for HandshakeError
impl From<HandshakeError<TcpStream>> for HandshakeError
source§fn from(error: NativeTlsHandshakeError) -> Self
fn from(error: NativeTlsHandshakeError) -> Self
Converts to this type from the input type.
source§impl From<HandshakeError<TcpStream>> for HandshakeError
impl From<HandshakeError<TcpStream>> for HandshakeError
source§fn from(error: OpenSslHandshakeError) -> Self
fn from(error: OpenSslHandshakeError) -> Self
Converts to this type from the input type.