Enum native_tls::HandshakeError 
source · 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> Error for HandshakeError<S>where
    S: Any + Debug,
 
impl<S> Error for HandshakeError<S>where S: Any + Debug,
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()
Auto Trait Implementations§
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