pub struct OwnedRevokedCert {
    pub serial_number: Vec<u8>,
    pub revocation_date: Time,
    pub reason_code: Option<RevocationReason>,
    pub invalidity_date: Option<Time>,
}
Expand description

Owned representation of a RFC 52801 profile Certificate Revocation List (CRL) revoked certificate entry.

Only available when the “alloc” feature is enabled.

Fields

serial_number: Vec<u8>

Serial number of the revoked certificate.

revocation_date: Time

The date at which the CA processed the revocation.

reason_code: Option<RevocationReason>

Identifies the reason for the certificate revocation. When absent, the revocation reason is assumed to be RevocationReason::Unspecified. For consistency with other extensions and to ensure only one revocation reason extension may be present we maintain this field as optional instead of defaulting to unspecified.

invalidity_date: Option<Time>

Provides the date on which it is known or suspected that the private key was compromised or that the certificate otherwise became invalid. This date may be earlier than the revocation date which is the date at which the CA processed the revocation.

Implementations

Convert the owned representation of this revoked cert to a borrowed version.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.