[][src]Trait rustls::internal::msgs::handshake::HasServerExtensions

pub trait HasServerExtensions {
    fn get_extensions(&self) -> &[ServerExtension];

    fn has_duplicate_extension(&self) -> bool { ... }
fn find_extension(&self, ext: ExtensionType) -> Option<&ServerExtension> { ... }
fn get_alpn_protocol(&self) -> Option<&[u8]> { ... }
fn get_quic_params_extension(&self) -> Option<Vec<u8>> { ... }
fn early_data_extension_offered(&self) -> bool { ... } }

Required methods

Loading content...

Provided methods

fn has_duplicate_extension(&self) -> bool

Returns true if there is more than one extension of a given type.

fn find_extension(&self, ext: ExtensionType) -> Option<&ServerExtension>

fn get_alpn_protocol(&self) -> Option<&[u8]>

fn get_quic_params_extension(&self) -> Option<Vec<u8>>

fn early_data_extension_offered(&self) -> bool

Loading content...

Implementors

Loading content...