pub enum ClientExtension {
Show 18 variants
    ECPointFormats(ECPointFormatList),
    NamedGroups(NamedGroups),
    SignatureAlgorithms(SupportedSignatureSchemes),
    ServerName(ServerNameRequest),
    SessionTicket(ClientSessionTicket),
    Protocols(ProtocolNameList),
    SupportedVersions(ProtocolVersions),
    KeyShare(KeyShareEntries),
    PresharedKeyModes(PSKKeyExchangeModes),
    PresharedKey(PresharedKeyOffer),
    Cookie(PayloadU16),
    ExtendedMasterSecretRequest,
    CertificateStatusRequest(CertificateStatusRequest),
    SignedCertificateTimestampRequest,
    TransportParameters(Vec<u8>),
    TransportParametersDraft(Vec<u8>),
    EarlyData,
    Unknown(UnknownExtension),
}Variants§
ECPointFormats(ECPointFormatList)
NamedGroups(NamedGroups)
SignatureAlgorithms(SupportedSignatureSchemes)
ServerName(ServerNameRequest)
SessionTicket(ClientSessionTicket)
Protocols(ProtocolNameList)
SupportedVersions(ProtocolVersions)
Cookie(PayloadU16)
ExtendedMasterSecretRequest
CertificateStatusRequest(CertificateStatusRequest)
SignedCertificateTimestampRequest
TransportParameters(Vec<u8>)
TransportParametersDraft(Vec<u8>)
EarlyData
Unknown(UnknownExtension)
Implementations§
Source§impl ClientExtension
 
impl ClientExtension
pub fn get_type(&self) -> ExtensionType
Source§impl ClientExtension
 
impl ClientExtension
Sourcepub fn make_sni(dns_name: DnsNameRef<'_>) -> Self
 
pub fn make_sni(dns_name: DnsNameRef<'_>) -> Self
Make a basic SNI ServerNameRequest quoting hostname.
Trait Implementations§
Source§impl Clone for ClientExtension
 
impl Clone for ClientExtension
Source§fn clone(&self) -> ClientExtension
 
fn clone(&self) -> ClientExtension
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moreAuto Trait Implementations§
impl Freeze for ClientExtension
impl RefUnwindSafe for ClientExtension
impl Send for ClientExtension
impl Sync for ClientExtension
impl Unpin for ClientExtension
impl UnwindSafe for ClientExtension
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more