Enum tokio_tungstenite::MaybeTlsStream[][src]

#[non_exhaustive]pub enum MaybeTlsStream<S> {
    Plain(S),
}

A stream that might be protected with TLS.

Variants (Non-exhaustive)

Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Plain(S)

Unencrypted socket stream.

Trait Implementations

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

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

impl<'pin, S> Unpin for MaybeTlsStream<S> where
    __MaybeTlsStream<'pin, S>: Unpin
[src]

Auto Trait Implementations

impl<S> RefUnwindSafe for MaybeTlsStream<S> where
    S: RefUnwindSafe

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

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

impl<S> UnwindSafe for MaybeTlsStream<S> where
    S: UnwindSafe

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, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

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<V, T> VZip<V> for T where
    V: MultiLane<T>,