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 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 HelloRetryExtension
impl Debug for HelloRetryExtension
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
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