pub enum HandshakeError<S> {
Failure(Error),
WouldBlock(MidHandshakeTlsStream<S>),
}
Expand description
An error returned from ClientBuilder::handshake
.
Variants§
Failure(Error)
A fatal error.
WouldBlock(MidHandshakeTlsStream<S>)
A stream interrupted midway through the handshake process due to a
WouldBlock
error.
Note that this is not a fatal error and it should be safe to call
handshake
at a later time once the stream is ready to perform I/O
again.
Trait Implementations§
Source§impl<S: Debug> Debug for HandshakeError<S>
impl<S: Debug> Debug for HandshakeError<S>
Source§impl<S> Display for HandshakeError<S>
impl<S> Display for HandshakeError<S>
Source§impl<S> Error for HandshakeError<S>
impl<S> Error for HandshakeError<S>
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns 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()
Auto Trait Implementations§
impl<S> Freeze for HandshakeError<S>
impl<S> !RefUnwindSafe for HandshakeError<S>
impl<S> Send for HandshakeError<S>where
S: Send,
impl<S> Sync for HandshakeError<S>where
S: Sync,
impl<S> Unpin for HandshakeError<S>where
S: Unpin,
impl<S> !UnwindSafe for HandshakeError<S>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 48 bytes
Size for each variant:
Failure
: 48 bytesWouldBlock
: 48 bytes