pub enum MsgType<'r> {
ClientHello(ClientHello<'r>),
ServerHello(ServerHello<'r>),
ClientFinished(ClientFinished<'r>),
EncryptedExtensions,
ServerCertificate,
ServerCertificateVerify,
ServerFinished,
NewSessionTicket,
}Variants§
ClientHello(ClientHello<'r>)
ServerHello(ServerHello<'r>)
ClientFinished(ClientFinished<'r>)
EncryptedExtensions
ServerCertificate
ServerCertificateVerify
ServerFinished
NewSessionTicket
Trait Implementations§
impl<'r> StructuralPartialEq for MsgType<'r>
Auto Trait Implementations§
impl<'r> Freeze for MsgType<'r>
impl<'r> RefUnwindSafe for MsgType<'r>
impl<'r> Send for MsgType<'r>
impl<'r> Sync for MsgType<'r>
impl<'r> Unpin for MsgType<'r>
impl<'r> UnwindSafe for MsgType<'r>
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