Struct x509_cert::anchor::TrustAnchorInfo
source · pub struct TrustAnchorInfo {
pub version: Version,
pub pub_key: SubjectPublicKeyInfoOwned,
pub key_id: OctetString,
pub ta_title: Option<String>,
pub cert_path: Option<CertPathControls>,
pub extensions: Option<Extensions>,
pub ta_title_lang_tag: Option<String>,
}
Expand description
TrustAnchorInfo ::= SEQUENCE {
version TrustAnchorInfoVersion DEFAULT v1,
pubKey SubjectPublicKeyInfo,
keyId KeyIdentifier,
taTitle TrustAnchorTitle OPTIONAL,
certPath CertPathControls OPTIONAL,
exts [1] EXPLICIT Extensions OPTIONAL,
taTitleLangTag [2] UTF8String OPTIONAL
}
TrustAnchorInfoVersion ::= INTEGER { v1(1) }
TrustAnchorTitle ::= UTF8String (SIZE (1..64))
Fields§
§version: Version
§pub_key: SubjectPublicKeyInfoOwned
§key_id: OctetString
§ta_title: Option<String>
§cert_path: Option<CertPathControls>
§extensions: Option<Extensions>
§ta_title_lang_tag: Option<String>
Trait Implementations§
source§impl Clone for TrustAnchorInfo
impl Clone for TrustAnchorInfo
source§fn clone(&self) -> TrustAnchorInfo
fn clone(&self) -> TrustAnchorInfo
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 TrustAnchorInfo
impl Debug for TrustAnchorInfo
source§impl<'__der_lifetime> DecodeValue<'__der_lifetime> for TrustAnchorInfo
impl<'__der_lifetime> DecodeValue<'__der_lifetime> for TrustAnchorInfo
source§impl<'__der_lifetime> EncodeValue for TrustAnchorInfo
impl<'__der_lifetime> EncodeValue for TrustAnchorInfo
source§impl PartialEq for TrustAnchorInfo
impl PartialEq for TrustAnchorInfo
source§fn eq(&self, other: &TrustAnchorInfo) -> bool
fn eq(&self, other: &TrustAnchorInfo) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for TrustAnchorInfo
impl<'__der_lifetime> Sequence<'__der_lifetime> for TrustAnchorInfo
impl StructuralEq for TrustAnchorInfo
impl StructuralPartialEq for TrustAnchorInfo
Auto Trait Implementations§
impl RefUnwindSafe for TrustAnchorInfo
impl Send for TrustAnchorInfo
impl Sync for TrustAnchorInfo
impl Unpin for TrustAnchorInfo
impl UnwindSafe for TrustAnchorInfo
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.