Struct rustls::internal::msgs::handshake::CertificatePayloadTLS13 [−][src]
pub struct CertificatePayloadTLS13 {
pub context: PayloadU8,
pub entries: Vec<CertificateEntry>,
}Fields
context: PayloadU8entries: Vec<CertificateEntry>Implementations
impl CertificatePayloadTLS13[src]
impl CertificatePayloadTLS13[src]pub fn new(entries: Vec<CertificateEntry>) -> CertificatePayloadTLS13[src]
pub fn any_entry_has_duplicate_extension(&self) -> bool[src]
pub fn any_entry_has_unknown_extension(&self) -> bool[src]
pub fn any_entry_has_extension(&self) -> bool[src]
pub fn get_end_entity_ocsp(&self) -> Vec<u8>[src]
pub fn get_end_entity_scts(&self) -> Option<SCTList>[src]
pub fn convert(&self) -> CertificatePayload[src]
Trait Implementations
impl Codec for CertificatePayloadTLS13[src]
impl Codec for CertificatePayloadTLS13[src]fn read(r: &mut Reader<'_>) -> Option<CertificatePayloadTLS13>[src]
fn read(r: &mut Reader<'_>) -> Option<CertificatePayloadTLS13>[src]Decode yourself by fiddling with the Reader.
Return Some if it worked, None if not. Read more
fn get_encoding(&self) -> Vec<u8>[src]
fn get_encoding(&self) -> Vec<u8>[src]Convenience function to get the results of encode().