Struct tls_parser::tls::TlsPlaintext [−][src]
pub struct TlsPlaintext<'a> {
pub hdr: TlsRecordHeader,
pub msg: Vec<TlsMessage<'a>>,
}TLS plaintext record
A TLS record can contain multiple messages (sharing the same record type). Plaintext records can only be found during the handshake.
Fields
hdr: TlsRecordHeader
msg: Vec<TlsMessage<'a>>
Trait Implementations
impl<'a> Clone for TlsPlaintext<'a>[src]
impl<'a> Clone for TlsPlaintext<'a>fn clone(&self) -> TlsPlaintext<'a>[src]
fn clone(&self) -> TlsPlaintext<'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 TlsPlaintext<'a>[src]
impl<'a> Debug for TlsPlaintext<'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 TlsPlaintext<'a>[src]
impl<'a> PartialEq for TlsPlaintext<'a>fn eq(&self, other: &TlsPlaintext<'a>) -> bool[src]
fn eq(&self, other: &TlsPlaintext<'a>) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &TlsPlaintext<'a>) -> bool[src]
fn ne(&self, other: &TlsPlaintext<'a>) -> boolThis method tests for !=.
Auto Trait Implementations
impl<'a> Send for TlsPlaintext<'a>
impl<'a> Send for TlsPlaintext<'a>impl<'a> Sync for TlsPlaintext<'a>
impl<'a> Sync for TlsPlaintext<'a>