pub enum HandshakeType {
ClientHello,
ServerHello,
NewSessionTicket,
EndOfEarlyData,
EncryptedExtensions,
Certificate,
CertificateRequest,
CertificateVerify,
Finished,
KeyUpdate,
MessageHash,
Unknown(u8),
}Variants§
ClientHello
ServerHello
NewSessionTicket
EndOfEarlyData
EncryptedExtensions
Certificate
CertificateRequest
CertificateVerify
Finished
KeyUpdate
MessageHash
Unknown(u8)
Trait Implementations§
Source§impl Debug for HandshakeType
impl Debug for HandshakeType
Source§impl From<HandshakeType> for &'static str
impl From<HandshakeType> for &'static str
Source§fn from(t: HandshakeType) -> &'static str
fn from(t: HandshakeType) -> &'static str
Converts to this type from the input type.
Source§impl From<u8> for HandshakeType
impl From<u8> for HandshakeType
Source§fn from(s: u8) -> HandshakeType
fn from(s: u8) -> HandshakeType
Converts to this type from the input type.
Source§impl PartialEq for HandshakeType
impl PartialEq for HandshakeType
impl StructuralPartialEq for HandshakeType
Auto Trait Implementations§
impl Freeze for HandshakeType
impl RefUnwindSafe for HandshakeType
impl Send for HandshakeType
impl Sync for HandshakeType
impl Unpin for HandshakeType
impl UnwindSafe for HandshakeType
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