[−][src]Type Definition rustls::internal::msgs::handshake::EncryptedExtensions
type EncryptedExtensions = Vec<ServerExtension>;
Trait Implementations
impl Codec for EncryptedExtensions
[src]
fn encode(&self, bytes: &mut Vec<u8>)
[src]
fn read(r: &mut Reader) -> Option<EncryptedExtensions>
[src]
fn get_encoding(&self) -> Vec<u8>
[src]
Convenience function to get the results of encode()
.
fn read_bytes(bytes: &[u8]) -> Option<Self>
[src]
Read one of these from the front of bytes
and return it. Read more
impl HasServerExtensions for EncryptedExtensions
[src]
fn get_extensions(&self) -> &[ServerExtension]
[src]
fn has_duplicate_extension(&self) -> bool
[src]
Returns true if there is more than one extension of a given type. Read more