Struct x509_cert::crl::CertificateList
source · pub struct CertificateList {
pub tbs_cert_list: TbsCertList,
pub signature_algorithm: AlgorithmIdentifierOwned,
pub signature: BitString,
}
Expand description
CertificateList
as defined in RFC 5280 Section 5.1.
CertificateList ::= SEQUENCE {
tbsCertList TBSCertList,
signatureAlgorithm AlgorithmIdentifier,
signatureValue BIT STRING
}
Fields§
§tbs_cert_list: TbsCertList
§signature_algorithm: AlgorithmIdentifierOwned
§signature: BitString
Trait Implementations§
source§impl Clone for CertificateList
impl Clone for CertificateList
source§fn clone(&self) -> CertificateList
fn clone(&self) -> CertificateList
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 CertificateList
impl Debug for CertificateList
source§impl<'__der_lifetime> DecodeValue<'__der_lifetime> for CertificateList
impl<'__der_lifetime> DecodeValue<'__der_lifetime> for CertificateList
source§impl<'__der_lifetime> EncodeValue for CertificateList
impl<'__der_lifetime> EncodeValue for CertificateList
source§impl PartialEq for CertificateList
impl PartialEq for CertificateList
source§fn eq(&self, other: &CertificateList) -> bool
fn eq(&self, other: &CertificateList) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl ValueOrd for CertificateList
impl ValueOrd for CertificateList
impl Eq for CertificateList
impl<'__der_lifetime> Sequence<'__der_lifetime> for CertificateList
impl StructuralEq for CertificateList
impl StructuralPartialEq for CertificateList
Auto Trait Implementations§
impl RefUnwindSafe for CertificateList
impl Send for CertificateList
impl Sync for CertificateList
impl Unpin for CertificateList
impl UnwindSafe for CertificateList
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.