Struct openssl::ssl::MidHandshakeSslStream
source · pub struct MidHandshakeSslStream<S> { /* private fields */ }
Expand description
An SSL stream midway through the handshake process.
Implementations§
source§impl<S> MidHandshakeSslStream<S>
impl<S> MidHandshakeSslStream<S>
sourcepub fn into_error(self) -> Error
pub fn into_error(self) -> Error
Consumes self
, returning its error.
source§impl<S> MidHandshakeSslStream<S>
impl<S> MidHandshakeSslStream<S>
sourcepub fn handshake(self) -> Result<SslStream<S>, HandshakeError<S>>
pub fn handshake(self) -> Result<SslStream<S>, HandshakeError<S>>
Restarts the handshake process.
This corresponds to SSL_do_handshake
.
Trait Implementations§
Auto Trait Implementations§
impl<S> Freeze for MidHandshakeSslStream<S>
impl<S> !RefUnwindSafe for MidHandshakeSslStream<S>
impl<S> Send for MidHandshakeSslStream<S>where
S: Send,
impl<S> Sync for MidHandshakeSslStream<S>where
S: Sync,
impl<S> Unpin for MidHandshakeSslStream<S>where
S: Unpin,
impl<S> !UnwindSafe for MidHandshakeSslStream<S>
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