Enum rustls::internal::msgs::handshake::ServerExtension[][src]

pub enum ServerExtension {
    ECPointFormats(ECPointFormatList),
    ServerNameAck,
    SessionTicketAck,
    RenegotiationInfo(PayloadU8),
    Protocols(ProtocolNameList),
    KeyShare(KeyShareEntry),
    PresharedKey(u16),
    ExtendedMasterSecretAck,
    CertificateStatusAck,
    SignedCertificateTimestamp(SCTList),
    SupportedVersions(ProtocolVersion),
    TransportParameters(Vec<u8>),
    EarlyData,
    Unknown(UnknownExtension),
}

Variants

ECPointFormats(ECPointFormatList)
ServerNameAck
SessionTicketAck
RenegotiationInfo(PayloadU8)
Protocols(ProtocolNameList)
KeyShare(KeyShareEntry)
PresharedKey(u16)
ExtendedMasterSecretAck
CertificateStatusAck
SignedCertificateTimestamp(SCTList)
SupportedVersions(ProtocolVersion)
TransportParameters(Vec<u8>)
EarlyData
Unknown(UnknownExtension)

Implementations

impl ServerExtension[src]

pub fn get_type(&self) -> ExtensionType[src]

impl ServerExtension[src]

pub fn make_alpn(proto: &[&[u8]]) -> ServerExtension[src]

pub fn make_empty_renegotiation_info() -> ServerExtension[src]

pub fn make_sct(sctl: Vec<u8>) -> ServerExtension[src]

Trait Implementations

impl Clone for ServerExtension[src]

impl Codec for ServerExtension[src]

impl Debug for ServerExtension[src]

Auto Trait Implementations

impl RefUnwindSafe for ServerExtension

impl Send for ServerExtension

impl Sync for ServerExtension

impl Unpin for ServerExtension

impl UnwindSafe for ServerExtension

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.