Enum security_framework::secure_transport::HandshakeError [−][src]
pub enum HandshakeError<S> {
Failure(Error),
Interrupted(MidHandshakeSslStream<S>),
}
Expand description
An error or intermediate state after a TLS handshake attempt.
Variants
The handshake failed.
Tuple Fields of Failure
0: Error
The handshake was interrupted midway through.
Tuple Fields of Interrupted
0: MidHandshakeSslStream<S>