[][src]Struct udp_dtls::MidHandshakeDtlsStream

pub struct MidHandshakeDtlsStream<S>(pub MidHandshakeSslStream<S>);

A DTLS stream which has been interrupted midway through the handshake process.

Methods

impl<S> MidHandshakeDtlsStream<S>[src]

pub fn get_ref(&self) -> &S[src]

Returns a shared reference to the inner stream.

pub fn get_mut(&mut self) -> &mut S[src]

Returns a mutable reference to the inner stream.

impl<S> MidHandshakeDtlsStream<S> where
    S: Read + Write
[src]

pub fn handshake(self) -> Result<DtlsStream<S>, HandshakeError<S>>[src]

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.

Underlying SSL

This corresponds to SSL_do_handshake.

Trait Implementations

impl<S> Debug for MidHandshakeDtlsStream<S> where
    S: Debug
[src]

Auto Trait Implementations

impl<S> Send for MidHandshakeDtlsStream<S> where
    S: Send

impl<S> Unpin for MidHandshakeDtlsStream<S> where
    S: Unpin

impl<S> Sync for MidHandshakeDtlsStream<S> where
    S: Sync

impl<S> !UnwindSafe for MidHandshakeDtlsStream<S>

impl<S> !RefUnwindSafe for MidHandshakeDtlsStream<S>

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]