Struct x509_cert::crl::TbsCertList
source · pub struct TbsCertList {
pub version: Version,
pub signature: AlgorithmIdentifierOwned,
pub issuer: Name,
pub this_update: Time,
pub next_update: Option<Time>,
pub revoked_certificates: Option<Vec<RevokedCert>>,
pub crl_extensions: Option<Extensions>,
}
Expand description
TbsCertList
as defined in RFC 5280 Section 5.1.
TBSCertList ::= SEQUENCE {
version Version OPTIONAL, -- if present, MUST be v2
signature AlgorithmIdentifier,
issuer Name,
thisUpdate Time,
nextUpdate Time OPTIONAL,
revokedCertificates SEQUENCE OF SEQUENCE {
userCertificate CertificateSerialNumber,
revocationDate Time,
crlEntryExtensions Extensions OPTIONAL -- if present, version MUST be v2
} OPTIONAL,
crlExtensions [0] EXPLICIT Extensions OPTIONAL -- if present, version MUST be v2
}
Fields§
§version: Version
§signature: AlgorithmIdentifierOwned
§issuer: Name
§this_update: Time
§next_update: Option<Time>
§revoked_certificates: Option<Vec<RevokedCert>>
§crl_extensions: Option<Extensions>
Trait Implementations§
source§impl Clone for TbsCertList
impl Clone for TbsCertList
source§fn clone(&self) -> TbsCertList
fn clone(&self) -> TbsCertList
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 TbsCertList
impl Debug for TbsCertList
source§impl<'__der_lifetime> DecodeValue<'__der_lifetime> for TbsCertList
impl<'__der_lifetime> DecodeValue<'__der_lifetime> for TbsCertList
source§impl<'__der_lifetime> EncodeValue for TbsCertList
impl<'__der_lifetime> EncodeValue for TbsCertList
source§impl PartialEq for TbsCertList
impl PartialEq for TbsCertList
source§fn eq(&self, other: &TbsCertList) -> bool
fn eq(&self, other: &TbsCertList) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl ValueOrd for TbsCertList
impl ValueOrd for TbsCertList
impl Eq for TbsCertList
impl<'__der_lifetime> Sequence<'__der_lifetime> for TbsCertList
impl StructuralEq for TbsCertList
impl StructuralPartialEq for TbsCertList
Auto Trait Implementations§
impl RefUnwindSafe for TbsCertList
impl Send for TbsCertList
impl Sync for TbsCertList
impl Unpin for TbsCertList
impl UnwindSafe for TbsCertList
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<'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.