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 more
sourcefn get_encoding(&self) -> Vec<u8>
fn get_encoding(&self) -> Vec<u8>
Convenience function to get the results of encode()
.
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more