Struct windows_sys::Win32::Security::Cryptography::CERT_REVOCATION_INFO
#[repr(C)]pub struct CERT_REVOCATION_INFO {
pub cbSize: u32,
pub dwRevocationResult: u32,
pub pszRevocationOid: PCSTR,
pub pvOidSpecificInfo: *mut c_void,
pub fHasFreshnessTime: BOOL,
pub dwFreshnessTime: u32,
pub pCrlInfo: *mut CERT_REVOCATION_CRL_INFO,
}
Expand description
Required features: "Win32_Foundation"
Fields§
§cbSize: u32
§dwRevocationResult: u32
§pszRevocationOid: PCSTR
§pvOidSpecificInfo: *mut c_void
§fHasFreshnessTime: BOOL
§dwFreshnessTime: u32
§pCrlInfo: *mut CERT_REVOCATION_CRL_INFO
Trait Implementations§
§impl Clone for CERT_REVOCATION_INFO
impl Clone for CERT_REVOCATION_INFO
impl Copy for CERT_REVOCATION_INFO
Auto Trait Implementations§
impl RefUnwindSafe for CERT_REVOCATION_INFO
impl !Send for CERT_REVOCATION_INFO
impl !Sync for CERT_REVOCATION_INFO
impl Unpin for CERT_REVOCATION_INFO
impl UnwindSafe for CERT_REVOCATION_INFO
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