pub struct CertContext {
pub encoding_type: CertEncodingType,
pub raw_cert: Vec<u8>,
pub cert: Certificate,
}Expand description
The CERT_CONTEXT structure contains both the encoded and decoded representations of a certificate.
§MSDN
Fields§
§encoding_type: CertEncodingType§raw_cert: Vec<u8>§cert: CertificateTrait Implementations§
Source§impl Clone for CertContext
impl Clone for CertContext
Source§fn clone(&self) -> CertContext
fn clone(&self) -> CertContext
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CertContext
impl Debug for CertContext
Source§impl PartialEq for CertContext
impl PartialEq for CertContext
impl StructuralPartialEq for CertContext
Auto Trait Implementations§
impl Freeze for CertContext
impl RefUnwindSafe for CertContext
impl Send for CertContext
impl Sync for CertContext
impl Unpin for CertContext
impl UnsafeUnpin for CertContext
impl UnwindSafe for CertContext
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more