Struct tls_parser::tls::TlsRecordHeader[][src]

pub struct TlsRecordHeader {
    pub record_type: TlsRecordType,
    pub version: u16,
    pub len: u16,
}

TLS record header

Fields

Trait Implementations

impl Clone for TlsRecordHeader
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for TlsRecordHeader
[src]

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

This method tests for !=.

impl Debug for TlsRecordHeader
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations