Struct native_tls::MidHandshakeTlsStream [−][src]
pub struct MidHandshakeTlsStream<S>(_);
A TLS stream which has been interrupted midway through the handshake process.
Methods
impl<S> MidHandshakeTlsStream<S> where
S: Read + Write, [src]
impl<S> MidHandshakeTlsStream<S> where
S: Read + Write, pub fn get_ref(&self) -> &S[src]
pub fn get_ref(&self) -> &SReturns a shared reference to the inner stream.
pub fn get_mut(&mut self) -> &mut S[src]
pub fn get_mut(&mut self) -> &mut SReturns a mutable reference to the inner stream.
pub fn handshake(self) -> Result<TlsStream<S>, HandshakeError<S>>[src]
pub fn handshake(self) -> Result<TlsStream<S>, HandshakeError<S>>Restarts the handshake process.
If the handshake completes successfully then the negotiated stream is
returned. If there is a problem, however, then an error is returned.
Note that the error may not be fatal. For example if the underlying
stream is an asynchronous one then HandshakeError::WouldBlock may
just mean to wait for more I/O to happen later.
Trait Implementations
impl<S> Debug for MidHandshakeTlsStream<S> where
S: Debug, [src]
impl<S> Debug for MidHandshakeTlsStream<S> where
S: Debug, Auto Trait Implementations
impl<S> Send for MidHandshakeTlsStream<S> where
S: Send,
impl<S> Send for MidHandshakeTlsStream<S> where
S: Send, impl<S> Sync for MidHandshakeTlsStream<S> where
S: Sync,
impl<S> Sync for MidHandshakeTlsStream<S> where
S: Sync,