pub struct HelloRetryRequest {
pub legacy_version: ProtocolVersion,
pub session_id: SessionID,
pub cipher_suite: CipherSuite,
pub extensions: Vec<HelloRetryExtension>,
}
Fields
legacy_version: ProtocolVersion
session_id: SessionID
cipher_suite: CipherSuite
extensions: Vec<HelloRetryExtension>
Implementations
sourceimpl HelloRetryRequest
impl HelloRetryRequest
sourcepub fn has_duplicate_extension(&self) -> bool
pub fn has_duplicate_extension(&self) -> bool
Returns true if there is more than one extension of a given type.
pub fn has_unknown_extension(&self) -> bool
pub fn get_supported_versions(&self) -> Option<ProtocolVersion>
Trait Implementations
sourceimpl Codec for HelloRetryRequest
impl Codec for HelloRetryRequest
sourcefn read(r: &mut Reader<'_>) -> Option<HelloRetryRequest>
fn read(r: &mut Reader<'_>) -> Option<HelloRetryRequest>
Decode yourself by fiddling with the
Reader
.
Return Some if it worked, None if not. Read moresourcefn get_encoding(&self) -> Vec<u8>
fn get_encoding(&self) -> Vec<u8>
Convenience function to get the results of
encode()
.sourcefn read_bytes(bytes: &[u8]) -> Option<Self>
fn read_bytes(bytes: &[u8]) -> Option<Self>
Read one of these from the front of
bytes
and
return it. Read moresourceimpl Debug for HelloRetryRequest
impl Debug for HelloRetryRequest
Auto Trait Implementations
impl RefUnwindSafe for HelloRetryRequest
impl Send for HelloRetryRequest
impl Sync for HelloRetryRequest
impl Unpin for HelloRetryRequest
impl UnwindSafe for HelloRetryRequest
Blanket Implementations
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstablefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more