pub enum HelloRetryExtension {
KeyShare(NamedGroup),
Cookie(PayloadU16),
SupportedVersions(ProtocolVersion),
Unknown(UnknownExtension),
}
Variants
KeyShare(NamedGroup)
Cookie(PayloadU16)
SupportedVersions(ProtocolVersion)
Unknown(UnknownExtension)
Implementations
sourceimpl HelloRetryExtension
impl HelloRetryExtension
pub fn get_type(&self) -> ExtensionType
Trait Implementations
sourceimpl Codec for HelloRetryExtension
impl Codec for HelloRetryExtension
sourcefn read(r: &mut Reader<'_>) -> Option<HelloRetryExtension>
fn read(r: &mut Reader<'_>) -> Option<HelloRetryExtension>
Decode yourself by fiddling with the Reader
.
Return Some if it worked, None if not. Read more
sourcefn get_encoding(&self) -> Vec<u8>
fn get_encoding(&self) -> Vec<u8>
Convenience function to get the results of encode()
.
Auto Trait Implementations
impl RefUnwindSafe for HelloRetryExtension
impl Send for HelloRetryExtension
impl Sync for HelloRetryExtension
impl Unpin for HelloRetryExtension
impl UnwindSafe for HelloRetryExtension
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more