[][src]Struct hyper_tls::TlsStream

pub struct TlsStream<S>(_);

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.

Implementations

impl<S> TlsStream<S>[src]

pub fn get_ref(&self) -> &TlsStream<AllowStd<S>> where
    S: AsyncRead + AsyncWrite + Unpin
[src]

Returns a shared reference to the inner stream.

pub fn get_mut(&mut self) -> &mut TlsStream<AllowStd<S>> where
    S: AsyncRead + AsyncWrite + Unpin
[src]

Returns a mutable reference to the inner stream.

Trait Implementations

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

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

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

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

Auto Trait Implementations

impl<S> !RefUnwindSafe for TlsStream<S>[src]

impl<S> Send for TlsStream<S> where
    S: Send
[src]

impl<S> Sync for TlsStream<S> where
    S: Sync
[src]

impl<S> Unpin for TlsStream<S> where
    S: Unpin
[src]

impl<S> !UnwindSafe for TlsStream<S>[src]

Blanket Implementations

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

impl<R> AsyncReadExt for R where
    R: AsyncRead + ?Sized
[src]

impl<W> AsyncWriteExt for W where
    W: AsyncWrite + ?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> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<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.