Struct tls_parser::tls::TlsMessageApplicationData[][src]

pub struct TlsMessageApplicationData<'a> {
    pub blob: &'a [u8],
}

TLS application data

Since this message can only be sent after the handshake, data is stored as opaque.

Fields

Trait Implementations

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

Formats the value using the given formatter. Read more

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

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

This method tests for !=.

Auto Trait Implementations