pub struct CertificatePolicies(pub Vec<PolicyInformation>);Expand description
CertificatePolicies as defined in RFC 5280 Section 4.2.1.4.
CertificatePolicies ::= SEQUENCE SIZE (1..MAX) OF PolicyInformationTuple Fields§
§0: Vec<PolicyInformation>Trait Implementations§
Source§impl AsExtension for CertificatePolicies
impl AsExtension for CertificatePolicies
Source§impl<'a> AsMut<Vec<PolicyInformation>> for CertificatePolicies
impl<'a> AsMut<Vec<PolicyInformation>> for CertificatePolicies
Source§fn as_mut(&mut self) -> &mut Vec<PolicyInformation>
fn as_mut(&mut self) -> &mut Vec<PolicyInformation>
Converts this type into a mutable reference of the (usually inferred) input type.
Source§impl<'a> AsRef<Vec<PolicyInformation>> for CertificatePolicies
impl<'a> AsRef<Vec<PolicyInformation>> for CertificatePolicies
Source§fn as_ref(&self) -> &Vec<PolicyInformation>
fn as_ref(&self) -> &Vec<PolicyInformation>
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl AssociatedOid for CertificatePolicies
impl AssociatedOid for CertificatePolicies
Source§const OID: ObjectIdentifier = ID_CE_CERTIFICATE_POLICIES
const OID: ObjectIdentifier = ID_CE_CERTIFICATE_POLICIES
The OID associated with this type.
Source§impl Clone for CertificatePolicies
impl Clone for CertificatePolicies
Source§fn clone(&self) -> CertificatePolicies
fn clone(&self) -> CertificatePolicies
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CertificatePolicies
impl Debug for CertificatePolicies
Source§impl<'a> DecodeValue<'a> for CertificatePolicies
impl<'a> DecodeValue<'a> for CertificatePolicies
Source§fn decode_value<R: Reader<'a>>(decoder: &mut R, header: Header) -> Result<Self>
fn decode_value<R: Reader<'a>>(decoder: &mut R, header: Header) -> Result<Self>
Attempt to decode this message using the provided [
Reader].Source§impl<'a> EncodeValue for CertificatePolicies
impl<'a> EncodeValue for CertificatePolicies
Source§impl<'a> FixedTag for CertificatePolicies
impl<'a> FixedTag for CertificatePolicies
Source§impl<'a> From<CertificatePolicies> for Vec<PolicyInformation>
impl<'a> From<CertificatePolicies> for Vec<PolicyInformation>
Source§fn from(value: CertificatePolicies) -> Self
fn from(value: CertificatePolicies) -> Self
Converts to this type from the input type.
Source§impl<'a> From<Vec<PolicyInformation>> for CertificatePolicies
impl<'a> From<Vec<PolicyInformation>> for CertificatePolicies
Source§fn from(value: Vec<PolicyInformation>) -> Self
fn from(value: Vec<PolicyInformation>) -> Self
Converts to this type from the input type.
Source§impl PartialEq for CertificatePolicies
impl PartialEq for CertificatePolicies
Source§fn eq(&self, other: &CertificatePolicies) -> bool
fn eq(&self, other: &CertificatePolicies) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl<'a> ValueOrd for CertificatePolicies
impl<'a> ValueOrd for CertificatePolicies
impl Eq for CertificatePolicies
impl StructuralPartialEq for CertificatePolicies
Auto Trait Implementations§
impl Freeze for CertificatePolicies
impl RefUnwindSafe for CertificatePolicies
impl Send for CertificatePolicies
impl Sync for CertificatePolicies
impl Unpin for CertificatePolicies
impl UnsafeUnpin for CertificatePolicies
impl UnwindSafe for CertificatePolicies
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
§impl<'a, T> Choice<'a> for Twhere
T: Decode<'a> + FixedTag,
impl<'a, T> Choice<'a> for Twhere
T: Decode<'a> + FixedTag,
§fn can_decode(tag: Tag) -> bool
fn can_decode(tag: Tag) -> bool
Is the provided [
Tag] decodable as a variant of this CHOICE?Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<'a, T> Decode<'a> for Twhere
T: DecodeValue<'a> + FixedTag,
impl<'a, T> Decode<'a> for Twhere
T: DecodeValue<'a> + FixedTag,
§impl<T> DerOrd for Twhere
T: EncodeValue + ValueOrd + Tagged,
impl<T> DerOrd for Twhere
T: EncodeValue + ValueOrd + Tagged,
Source§impl<T> DynAssociatedOid for Twhere
T: AssociatedOid,
impl<T> DynAssociatedOid for Twhere
T: AssociatedOid,
Source§fn oid(&self) -> ObjectIdentifier
fn oid(&self) -> ObjectIdentifier
Get the OID associated with this value.
§impl<T> Encode for Twhere
T: EncodeValue + Tagged,
impl<T> Encode for Twhere
T: EncodeValue + Tagged,
§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.
§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].
§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.
§fn encode_to_vec(&self, buf: &mut Vec<u8>) -> Result<Length, Error>
fn encode_to_vec(&self, buf: &mut Vec<u8>) -> Result<Length, Error>
Encode this message as ASN.1 DER, appending it to the provided
byte vector.