pub struct ServerHelloPayload {
pub extensions: Vec<ServerExtension>,
pub(crate) legacy_version: ProtocolVersion,
pub(crate) random: Random,
pub(crate) session_id: SessionId,
pub(crate) cipher_suite: CipherSuite,
pub(crate) compression_method: Compression,
}
Fields§
§extensions: Vec<ServerExtension>
§legacy_version: ProtocolVersion
§random: Random
§session_id: SessionId
§cipher_suite: CipherSuite
§compression_method: Compression
Implementations§
Source§impl ServerHelloPayload
impl ServerHelloPayload
pub(crate) fn psk_index(&self) -> Option<u16>
pub(crate) fn ecpoints_extension(&self) -> Option<&[ECPointFormat]>
pub(crate) fn ems_support_acked(&self) -> bool
pub(crate) fn supported_versions(&self) -> Option<ProtocolVersion>
fn payload_encode(&self, bytes: &mut Vec<u8>, encoding: Encoding)
Trait Implementations§
Source§impl Clone for ServerHelloPayload
impl Clone for ServerHelloPayload
Source§fn clone(&self) -> ServerHelloPayload
fn clone(&self) -> ServerHelloPayload
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 moreSource§impl Codec<'_> for ServerHelloPayload
impl Codec<'_> for ServerHelloPayload
Source§fn encode(&self, bytes: &mut Vec<u8>)
fn encode(&self, bytes: &mut Vec<u8>)
Function for encoding itself by appending itself to
the provided vec of bytes.
Source§fn read(r: &mut Reader<'_>) -> Result<Self, InvalidMessage>
fn read(r: &mut Reader<'_>) -> Result<Self, InvalidMessage>
Function for decoding itself from the provided reader
will return Some if the decoding was successful or
None if it was not.
Source§fn get_encoding(&self) -> Vec<u8>
fn get_encoding(&self) -> Vec<u8>
Convenience function for encoding the implementation
into a vec and returning it
Source§fn read_bytes(bytes: &'a [u8]) -> Result<Self, InvalidMessage>
fn read_bytes(bytes: &'a [u8]) -> Result<Self, InvalidMessage>
Function for wrapping a call to the read function in
a Reader for the slice of bytes provided Read more
Source§impl Debug for ServerHelloPayload
impl Debug for ServerHelloPayload
Source§impl HasServerExtensions for ServerHelloPayload
impl HasServerExtensions for ServerHelloPayload
fn extensions(&self) -> &[ServerExtension]
Source§fn has_duplicate_extension(&self) -> bool
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 alpn_protocol(&self) -> Option<&[u8]>
fn server_cert_type(&self) -> Option<&CertificateType>
fn client_cert_type(&self) -> Option<&CertificateType>
fn quic_params_extension(&self) -> Option<Vec<u8>>
fn server_ech_extension(&self) -> Option<ServerEncryptedClientHello>
fn early_data_extension_offered(&self) -> bool
Auto Trait Implementations§
impl Freeze for ServerHelloPayload
impl RefUnwindSafe for ServerHelloPayload
impl Send for ServerHelloPayload
impl Sync for ServerHelloPayload
impl Unpin for ServerHelloPayload
impl UnwindSafe for ServerHelloPayload
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