Type Alias CRL_INFO
Source pub type CRL_INFO = _CRL_INFO;
struct CRL_INFO {
pub dwVersion: u32,
pub SignatureAlgorithm: _CRYPT_ALGORITHM_IDENTIFIER,
pub Issuer: _CRYPTOAPI_BLOB,
pub ThisUpdate: _FILETIME,
pub NextUpdate: _FILETIME,
pub cCRLEntry: u32,
pub rgCRLEntry: *mut _CRL_ENTRY,
pub cExtension: u32,
pub rgExtension: *mut _CERT_EXTENSION,
}
Trait Implementations
Performs copy-assignment from
source
.
Read more
Formats the value using the given formatter.
Read more
Compares and returns the maximum of two values.
Read more
Compares and returns the minimum of two values.
Read more
Restrict a value to a certain interval.
Read more
Tests for self
and other
values to be equal, and is used by ==
.
Tests for !=
. The default implementation is almost always sufficient,
and should not be overridden without very good reason.
This method returns an ordering between
self
and
other
values if one exists.
Read more
Tests less than (for
self
and
other
) and is used by the
<
operator.
Read more
Tests less than or equal to (for
self
and
other
) and is used by the
<=
operator.
Read more
Tests greater than (for
self
and
other
) and is used by the
>
operator.
Read more
Tests greater than or equal to (for
self
and
other
) and is used by
the
>=
operator.
Read more