pub struct RevokedCert {
pub serial_number: SerialNumber,
pub revocation_date: Time,
pub crl_entry_extensions: Option<Extensions>,
}
Expand description
Implicit intermediate structure from the ASN.1 definition of TBSCertList
.
This type is used for the revoked_certificates
field of TbsCertList
.
See RFC 5280 Section 5.1.
RevokedCert ::= SEQUENCE {
userCertificate CertificateSerialNumber,
revocationDate Time,
crlEntryExtensions Extensions OPTIONAL
}
Fields§
§serial_number: SerialNumber
§revocation_date: Time
§crl_entry_extensions: Option<Extensions>
Trait Implementations§
source§impl Clone for RevokedCert
impl Clone for RevokedCert
source§fn clone(&self) -> RevokedCert
fn clone(&self) -> RevokedCert
Returns a copy 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 RevokedCert
impl Debug for RevokedCert
source§impl<'__der_lifetime> DecodeValue<'__der_lifetime> for RevokedCert
impl<'__der_lifetime> DecodeValue<'__der_lifetime> for RevokedCert
source§impl<'__der_lifetime> EncodeValue for RevokedCert
impl<'__der_lifetime> EncodeValue for RevokedCert
source§impl PartialEq for RevokedCert
impl PartialEq for RevokedCert
source§impl ValueOrd for RevokedCert
impl ValueOrd for RevokedCert
impl Eq for RevokedCert
impl<'__der_lifetime> Sequence<'__der_lifetime> for RevokedCert
impl StructuralPartialEq for RevokedCert
Auto Trait Implementations§
impl Freeze for RevokedCert
impl RefUnwindSafe for RevokedCert
impl Send for RevokedCert
impl Sync for RevokedCert
impl Unpin for RevokedCert
impl UnwindSafe for RevokedCert
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<'a, T> Decode<'a> for Twhere
T: DecodeValue<'a> + FixedTag,
impl<'a, T> Decode<'a> for Twhere
T: DecodeValue<'a> + FixedTag,
source§impl<T> Encode for Twhere
T: EncodeValue + Tagged,
impl<T> Encode for Twhere
T: EncodeValue + Tagged,
source§fn encoded_len(&self) -> Result<Length, Error>
fn encoded_len(&self) -> Result<Length, Error>
Compute the length of this value in bytes when encoded as ASN.1 DER.
source§fn encode(&self, writer: &mut impl Writer) -> Result<(), Error>
fn encode(&self, writer: &mut impl Writer) -> Result<(), Error>
Encode this value as ASN.1 DER using the provided Writer
.
source§fn encode_to_slice<'a>(&self, buf: &'a mut [u8]) -> Result<&'a [u8], Error>
fn encode_to_slice<'a>(&self, buf: &'a mut [u8]) -> Result<&'a [u8], Error>
Encode this value to the provided byte slice, returning a sub-slice
containing the encoded message.