pub struct SubjectInfoAccessSyntax(pub Vec<AccessDescription>);Expand description
SubjectInfoAccessSyntax as defined in RFC 5280 Section 4.2.2.2.
SubjectInfoAccessSyntax ::= SEQUENCE SIZE (1..MAX) OF AccessDescriptionTuple Fields§
§0: Vec<AccessDescription>Trait Implementations§
Source§impl<'a> AsMut<Vec<AccessDescription>> for SubjectInfoAccessSyntax
impl<'a> AsMut<Vec<AccessDescription>> for SubjectInfoAccessSyntax
Source§fn as_mut(&mut self) -> &mut Vec<AccessDescription>
fn as_mut(&mut self) -> &mut Vec<AccessDescription>
Converts this type into a mutable reference of the (usually inferred) input type.
Source§impl<'a> AsRef<Vec<AccessDescription>> for SubjectInfoAccessSyntax
impl<'a> AsRef<Vec<AccessDescription>> for SubjectInfoAccessSyntax
Source§fn as_ref(&self) -> &Vec<AccessDescription>
fn as_ref(&self) -> &Vec<AccessDescription>
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl AssociatedOid for SubjectInfoAccessSyntax
impl AssociatedOid for SubjectInfoAccessSyntax
Source§const OID: ObjectIdentifier = ID_PE_SUBJECT_INFO_ACCESS
const OID: ObjectIdentifier = ID_PE_SUBJECT_INFO_ACCESS
The OID associated with this type.
Source§impl Clone for SubjectInfoAccessSyntax
impl Clone for SubjectInfoAccessSyntax
Source§fn clone(&self) -> SubjectInfoAccessSyntax
fn clone(&self) -> SubjectInfoAccessSyntax
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 SubjectInfoAccessSyntax
impl Debug for SubjectInfoAccessSyntax
Source§impl<'a> DecodeValue<'a> for SubjectInfoAccessSyntax
impl<'a> DecodeValue<'a> for SubjectInfoAccessSyntax
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 Default for SubjectInfoAccessSyntax
impl Default for SubjectInfoAccessSyntax
Source§fn default() -> SubjectInfoAccessSyntax
fn default() -> SubjectInfoAccessSyntax
Returns the “default value” for a type. Read more
Source§impl<'a> EncodeValue for SubjectInfoAccessSyntax
impl<'a> EncodeValue for SubjectInfoAccessSyntax
Source§impl<'a> FixedTag for SubjectInfoAccessSyntax
impl<'a> FixedTag for SubjectInfoAccessSyntax
Source§impl<'a> From<SubjectInfoAccessSyntax> for Vec<AccessDescription>
impl<'a> From<SubjectInfoAccessSyntax> for Vec<AccessDescription>
Source§fn from(value: SubjectInfoAccessSyntax) -> Self
fn from(value: SubjectInfoAccessSyntax) -> Self
Converts to this type from the input type.
Source§impl<'a> From<Vec<AccessDescription>> for SubjectInfoAccessSyntax
impl<'a> From<Vec<AccessDescription>> for SubjectInfoAccessSyntax
Source§fn from(value: Vec<AccessDescription>) -> Self
fn from(value: Vec<AccessDescription>) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SubjectInfoAccessSyntax
impl PartialEq for SubjectInfoAccessSyntax
Source§fn eq(&self, other: &SubjectInfoAccessSyntax) -> bool
fn eq(&self, other: &SubjectInfoAccessSyntax) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl<'a> ValueOrd for SubjectInfoAccessSyntax
impl<'a> ValueOrd for SubjectInfoAccessSyntax
impl Eq for SubjectInfoAccessSyntax
impl StructuralPartialEq for SubjectInfoAccessSyntax
Auto Trait Implementations§
impl Freeze for SubjectInfoAccessSyntax
impl RefUnwindSafe for SubjectInfoAccessSyntax
impl Send for SubjectInfoAccessSyntax
impl Sync for SubjectInfoAccessSyntax
impl Unpin for SubjectInfoAccessSyntax
impl UnsafeUnpin for SubjectInfoAccessSyntax
impl UnwindSafe for SubjectInfoAccessSyntax
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.