Type Definition rustls::internal::msgs::handshake::EncryptedExtensions [−][src]
type EncryptedExtensions = Vec<ServerExtension>;
Trait Implementations
impl Codec for EncryptedExtensions[src]
impl Codec for EncryptedExtensions[src]fn read(r: &mut Reader<'_>) -> Option<EncryptedExtensions>[src]
fn read(r: &mut Reader<'_>) -> Option<EncryptedExtensions>[src]Decode yourself by fiddling with the Reader.
Return Some if it worked, None if not. Read more
fn get_encoding(&self) -> Vec<u8>[src]
fn get_encoding(&self) -> Vec<u8>[src]Convenience function to get the results of encode().
impl HasServerExtensions for EncryptedExtensions[src]
impl HasServerExtensions for EncryptedExtensions[src]fn get_extensions(&self) -> &[ServerExtension][src]
fn has_duplicate_extension(&self) -> bool[src]
fn has_duplicate_extension(&self) -> bool[src]Returns true if there is more than one extension of a given type. Read more