[][src]Enum quinn::crypto::rustls::TlsSession

pub enum TlsSession {
    // some variants omitted
}

A rustls TLS session

Trait Implementations

impl ClientConfig<TlsSession> for Arc<ClientConfig>[src]

impl Deref for TlsSession[src]

type Target = dyn Session + 'static

The resulting type after dereferencing.

impl DerefMut for TlsSession[src]

impl ServerConfig<TlsSession> for Arc<ServerConfig>[src]

impl Session for TlsSession[src]

type AuthenticationData = AuthenticationData

Data conveyed by the peer during the handshake, including cryptographic identity

type ClientConfig = Arc<ClientConfig>

Type used to hold configuration for client sessions

type HmacKey = Key

Type used to sign various values

type Keys = Crypto

Type used to represent packet protection keys

type ServerConfig = Arc<ServerConfig>

Type used to hold configuration for server sessions

Auto Trait Implementations

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<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>,