pub struct CertificateEntry {
pub cert: Certificate,
pub exts: CertificateExtensions,
}
Fields
cert: Certificate
exts: CertificateExtensions
Implementations
sourceimpl CertificateEntry
impl CertificateEntry
pub fn new(cert: Certificate) -> CertificateEntry
pub fn has_duplicate_extension(&self) -> bool
pub fn has_unknown_extension(&self) -> bool
pub fn get_ocsp_response(&self) -> Option<&Vec<u8>>
pub fn get_scts(&self) -> Option<&SCTList>
Trait Implementations
sourceimpl Codec for CertificateEntry
impl Codec for CertificateEntry
sourcefn read(r: &mut Reader<'_>) -> Option<CertificateEntry>
fn read(r: &mut Reader<'_>) -> Option<CertificateEntry>
Decode yourself by fiddling with the
Reader
.
Return Some if it worked, None if not. Read moresourcefn get_encoding(&self) -> Vec<u8>
fn get_encoding(&self) -> Vec<u8>
Convenience function to get the results of
encode()
.sourcefn read_bytes(bytes: &[u8]) -> Option<Self>
fn read_bytes(bytes: &[u8]) -> Option<Self>
Read one of these from the front of
bytes
and
return it. Read moresourceimpl Debug for CertificateEntry
impl Debug for CertificateEntry
Auto Trait Implementations
impl RefUnwindSafe for CertificateEntry
impl Send for CertificateEntry
impl Sync for CertificateEntry
impl Unpin for CertificateEntry
impl UnwindSafe for CertificateEntry
Blanket Implementations
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstablefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more