Struct tls_parser::tls::TlsNewSessionTicketContent[][src]

pub struct TlsNewSessionTicketContent<'a> {
    pub ticket_lifetime_hint: u32,
    pub ticket: &'a [u8],
}

Session ticket, as defined in RFC5077

Fields

Trait Implementations

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

Formats the value using the given formatter. Read more

impl<'a> PartialEq for TlsNewSessionTicketContent<'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