[][src]Enum hyper_rustls::MaybeHttpsStream

pub enum MaybeHttpsStream<T> {
    Http(T),
    Https(TlsStream<T>),
}

A stream that might be protected with TLS.

Variants

Http(T)

A stream over plain text.

Https(TlsStream<T>)

A stream protected with TLS.

Trait Implementations

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

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

impl<T: Debug> Debug for MaybeHttpsStream<T>[src]

impl<T: AsyncWrite + AsyncRead + Unpin> AsyncWrite for MaybeHttpsStream<T>[src]

impl<T: AsyncRead + AsyncWrite + Unpin> AsyncRead for MaybeHttpsStream<T>[src]

Auto Trait Implementations

impl<T> Sync for MaybeHttpsStream<T> where
    T: Sync

impl<T> Send for MaybeHttpsStream<T> where
    T: Send

impl<T> Unpin for MaybeHttpsStream<T> where
    T: Unpin

impl<T> !UnwindSafe for MaybeHttpsStream<T>

impl<T> !RefUnwindSafe for MaybeHttpsStream<T>

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]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

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

impl<W> AsyncWriteExt for W where
    W: AsyncWrite + ?Sized
[src]