Enum security_framework::secure_transport::ClientHandshakeError [−][src]
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.
Trait Implementations
impl<S: Debug> Debug for ClientHandshakeError<S>[src]
impl<S: Debug> Debug for ClientHandshakeError<S>[src]impl<S> From<Error> for ClientHandshakeError<S>[src]
impl<S> From<Error> for ClientHandshakeError<S>[src]fn from(err: Error) -> ClientHandshakeError<S>[src]
fn from(err: Error) -> ClientHandshakeError<S>[src]Performs the conversion.
Auto Trait Implementations
impl<S> RefUnwindSafe for ClientHandshakeError<S> where
S: RefUnwindSafe,
S: RefUnwindSafe,
impl<S> Send for ClientHandshakeError<S> where
S: Send,
S: Send,
impl<S> Sync for ClientHandshakeError<S> where
S: Sync,
S: Sync,
impl<S> Unpin for ClientHandshakeError<S> where
S: Unpin,
S: Unpin,
impl<S> UnwindSafe for ClientHandshakeError<S> where
S: UnwindSafe,
S: UnwindSafe,