#[repr(C)]pub struct CERT_CHAIN_CONTEXT {
pub cbSize: DWORD,
pub TrustStatus: CERT_TRUST_STATUS,
pub cChain: DWORD,
pub rgpChain: *mut PCERT_SIMPLE_CHAIN,
pub cLowerQualityChainContext: DWORD,
pub rgpLowerQualityChainContext: *mut PCCERT_CHAIN_CONTEXT,
pub fHasRevocationFreshnessTime: BOOL,
pub dwRevocationFreshnessTime: DWORD,
pub dwCreateFlags: DWORD,
pub ChainId: GUID,
}
Fields§
§cbSize: DWORD
§TrustStatus: CERT_TRUST_STATUS
§cChain: DWORD
§rgpChain: *mut PCERT_SIMPLE_CHAIN
§cLowerQualityChainContext: DWORD
§rgpLowerQualityChainContext: *mut PCCERT_CHAIN_CONTEXT
§fHasRevocationFreshnessTime: BOOL
§dwRevocationFreshnessTime: DWORD
§dwCreateFlags: DWORD
§ChainId: GUID
Trait Implementations§
Source§impl Clone for CERT_CHAIN_CONTEXT
impl Clone for CERT_CHAIN_CONTEXT
Source§fn clone(&self) -> CERT_CHAIN_CONTEXT
fn clone(&self) -> CERT_CHAIN_CONTEXT
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 Default for CERT_CHAIN_CONTEXT
impl Default for CERT_CHAIN_CONTEXT
Source§fn default() -> CERT_CHAIN_CONTEXT
fn default() -> CERT_CHAIN_CONTEXT
Returns the “default value” for a type. Read more
impl Copy for CERT_CHAIN_CONTEXT
Auto Trait Implementations§
impl Freeze for CERT_CHAIN_CONTEXT
impl RefUnwindSafe for CERT_CHAIN_CONTEXT
impl !Send for CERT_CHAIN_CONTEXT
impl !Sync for CERT_CHAIN_CONTEXT
impl Unpin for CERT_CHAIN_CONTEXT
impl UnwindSafe for CERT_CHAIN_CONTEXT
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