pub struct MidHandshakeClientBuilder<S> { /* private fields */ }
Expand description
An SSL stream midway through the handshake process.
Implementations§
source§impl<S> MidHandshakeClientBuilder<S>
impl<S> MidHandshakeClientBuilder<S>
sourcepub fn handshake(self) -> Result<SslStream<S>, ClientHandshakeError<S>>
pub fn handshake(self) -> Result<SslStream<S>, ClientHandshakeError<S>>
Restarts the handshake process.
Trait Implementations§
Auto Trait Implementations§
impl<S> Freeze for MidHandshakeClientBuilder<S>
impl<S> RefUnwindSafe for MidHandshakeClientBuilder<S>where
S: RefUnwindSafe,
impl<S> Send for MidHandshakeClientBuilder<S>where
S: Send,
impl<S> Sync for MidHandshakeClientBuilder<S>where
S: Sync,
impl<S> Unpin for MidHandshakeClientBuilder<S>where
S: Unpin,
impl<S> UnwindSafe for MidHandshakeClientBuilder<S>where
S: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more