Struct tls_parser::TlsRawRecord [−][src]
pub struct TlsRawRecord<'a> {
pub hdr: TlsRecordHeader,
pub data: &'a [u8],
}Expand description
Tls Record with raw (unparsed) data
Use parse_tls_raw_record to parse content
Fields
hdr: TlsRecordHeaderdata: &'a [u8]Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl<'a> RefUnwindSafe for TlsRawRecord<'a>
impl<'a> Send for TlsRawRecord<'a>
impl<'a> Sync for TlsRawRecord<'a>
impl<'a> Unpin for TlsRawRecord<'a>
impl<'a> UnwindSafe for TlsRawRecord<'a>
Blanket Implementations
Mutably borrows from an owned value. Read more