pub enum ClientHandshakeError<S> {
Failure(Error),
Interrupted(MidHandshakeClientBuilder<S>),
}Expand description
An error or intermediate state after a TLS handshake attempt.
Variants§
Failure(Error)
The handshake failed.
Interrupted(MidHandshakeClientBuilder<S>)
The handshake was interrupted midway through.