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
Failure(Error)
The handshake failed.
Interrupted(MidHandshakeClientBuilder<S>)
The handshake was interrupted midway through.
Trait Implementations
impl<S: Debug> Debug for ClientHandshakeError<S>
[src]
impl<S> From<Error> for ClientHandshakeError<S>
[src]
fn from(err: Error) -> ClientHandshakeError<S>
Performs the conversion.