[][src]Struct tokio_tls_api::TlsStream

pub struct TlsStream<S> { /* fields omitted */ }

A wrapper around an underlying raw stream which implements the TLS or SSL protocol.

A TlsStream<S> represents a handshake that has been completed successfully and both the server and the client are ready for receiving and sending data. Bytes read from a TlsStream are decrypted from S and bytes written to a TlsStream are encrypted when passing through to S.

Methods

impl<S> TlsStream<S>[src]

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

Get access to the internal tls_api::TlsStream stream which also transitively allows access to S.

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

Get mutable access to the internal tls_api::TlsStream stream which also transitively allows mutable access to S.

Trait Implementations

impl<S: AsyncRead + AsyncWrite> AsyncRead for TlsStream<S>[src]

impl<S: AsyncRead + AsyncWrite + 'static> AsyncWrite for TlsStream<S>[src]

impl<S: Debug> Debug for TlsStream<S>[src]

impl<S: Read + Write> Read for TlsStream<S>[src]

impl<S: Read + Write> Write for TlsStream<S>[src]

Auto Trait Implementations

impl<S> !RefUnwindSafe for TlsStream<S>

impl<S> Send for TlsStream<S>

impl<S> Sync for TlsStream<S>

impl<S> Unpin for TlsStream<S>

impl<S> !UnwindSafe for TlsStream<S>

Blanket Implementations

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

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

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

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

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

impl<R> ReadBytesExt for R where
    R: Read + ?Sized

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<W> WriteBytesExt for W where
    W: Write + ?Sized