Struct tls_parser::tls::RawCertificate[][src]

pub struct RawCertificate<'a> {
    pub data: &'a [u8],
}

A raw certificate, which should be a DER-encoded X.509 certificate.

See RFC5280 for X509v3 certificate format.

Fields

Trait Implementations

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

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

This method tests for !=.

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

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<'a> Send for RawCertificate<'a>

impl<'a> Sync for RawCertificate<'a>