Enum security_framework::secure_transport::ClientHandshakeError [] [src]

pub enum ClientHandshakeError<S> {
    Failure(Error),
    Interrupted(MidHandshakeClientBuilder<S>),
}

An error or intermediate state after a TLS handshake attempt.

Variants

The handshake failed.

The handshake was interrupted midway through.

Trait Implementations

impl<S: Debug> Debug for ClientHandshakeError<S>
[src]

Formats the value using the given formatter.

impl<S> From<Error> for ClientHandshakeError<S>
[src]

Performs the conversion.