pub trait HasServerExtensions {
// Required method
fn get_extensions(&self) -> &[ServerExtension];
// Provided methods
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§
fn get_extensions(&self) -> &[ServerExtension]
Provided Methods§
sourcefn has_duplicate_extension(&self) -> bool
fn has_duplicate_extension(&self) -> bool
Returns true if there is more than one extension of a given type.