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
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more