Enum tls_parser::tls::TlsMessageHandshake [−][src]
pub enum TlsMessageHandshake<'a> {
HelloRequest,
ClientHello(TlsClientHelloContents<'a>),
ServerHello(TlsServerHelloContents<'a>),
ServerHelloV13Draft18(TlsServerHelloV13Draft18Contents<'a>),
NewSessionTicket(TlsNewSessionTicketContent<'a>),
EndOfEarlyData,
HelloRetryRequest(TlsHelloRetryRequestContents<'a>),
Certificate(TlsCertificateContents<'a>),
ServerKeyExchange(TlsServerKeyExchangeContents<'a>),
CertificateRequest(TlsCertificateRequestContents<'a>),
ServerDone(&'a [u8]),
CertificateVerify(&'a [u8]),
ClientKeyExchange(TlsClientKeyExchangeContents<'a>),
Finished(&'a [u8]),
CertificateStatus(TlsCertificateStatusContents<'a>),
NextProtocol(TlsNextProtocolContent<'a>),
KeyUpdate(u8),
}Generic handshake message
Variants
HelloRequestClientHello(TlsClientHelloContents<'a>)ServerHello(TlsServerHelloContents<'a>)ServerHelloV13Draft18(TlsServerHelloV13Draft18Contents<'a>)NewSessionTicket(TlsNewSessionTicketContent<'a>)EndOfEarlyDataHelloRetryRequest(TlsHelloRetryRequestContents<'a>)Certificate(TlsCertificateContents<'a>)ServerKeyExchange(TlsServerKeyExchangeContents<'a>)CertificateRequest(TlsCertificateRequestContents<'a>)ServerDone(&'a [u8])CertificateVerify(&'a [u8])ClientKeyExchange(TlsClientKeyExchangeContents<'a>)Finished(&'a [u8])CertificateStatus(TlsCertificateStatusContents<'a>)NextProtocol(TlsNextProtocolContent<'a>)KeyUpdate(u8)
Trait Implementations
impl<'a> Clone for TlsMessageHandshake<'a>[src]
impl<'a> Clone for TlsMessageHandshake<'a>fn clone(&self) -> TlsMessageHandshake<'a>[src]
fn clone(&self) -> TlsMessageHandshake<'a>Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl<'a> Debug for TlsMessageHandshake<'a>[src]
impl<'a> Debug for TlsMessageHandshake<'a>fn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl<'a> PartialEq for TlsMessageHandshake<'a>[src]
impl<'a> PartialEq for TlsMessageHandshake<'a>fn eq(&self, other: &TlsMessageHandshake<'a>) -> bool[src]
fn eq(&self, other: &TlsMessageHandshake<'a>) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &TlsMessageHandshake<'a>) -> bool[src]
fn ne(&self, other: &TlsMessageHandshake<'a>) -> boolThis method tests for !=.
Auto Trait Implementations
impl<'a> Send for TlsMessageHandshake<'a>
impl<'a> Send for TlsMessageHandshake<'a>impl<'a> Sync for TlsMessageHandshake<'a>
impl<'a> Sync for TlsMessageHandshake<'a>