Struct tls_parser::tls::TlsServerHelloV13Draft18Contents[][src]

pub struct TlsServerHelloV13Draft18Contents<'a> {
    pub version: TlsVersion,
    pub random: &'a [u8],
    pub cipher: TlsCipherSuiteID,
    pub ext: Option<&'a [u8]>,
}

TLS Server Hello (TLS 1.3 draft 18)

Fields

Trait Implementations

impl<'a> Clone for TlsServerHelloV13Draft18Contents<'a>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<'a> PartialEq for TlsServerHelloV13Draft18Contents<'a>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<'a> Debug for TlsServerHelloV13Draft18Contents<'a>
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations