Enum security_framework::secure_transport::HandshakeError
[−]
[src]
pub enum HandshakeError<S> { Failure(Error), Interrupted(MidHandshakeSslStream<S>), }
An error or intermediate state after a TLS handshake attempt.
Variants
Failure(Error)
The handshake failed.
Interrupted(MidHandshakeSslStream<S>)
The handshake was interrupted midway through.
Trait Implementations
impl<S: Debug> Debug for HandshakeError<S>
[src]
impl<S> From<Error> for HandshakeError<S>
[src]
fn from(err: Error) -> HandshakeError<S>
Performs the conversion.