pub struct SubjectDirectoryAttributes<'a>(pub Vec<Attribute<'a>>);Expand description
SubjectDirectoryAttributes as defined in RFC 5280 Section 4.2.1.8.
SubjectDirectoryAttributes ::= SEQUENCE SIZE (1..MAX) OF AttributeSetTuple Fields§
§0: Vec<Attribute<'a>>Implementations§
Trait Implementations§
Source§impl<'a> BERDecodable for SubjectDirectoryAttributes<'a>
impl<'a> BERDecodable for SubjectDirectoryAttributes<'a>
Source§fn decode_ber(reader: BERReader<'_, '_>) -> ASN1Result<Self>
fn decode_ber(reader: BERReader<'_, '_>) -> ASN1Result<Self>
Source§impl<'a> Clone for SubjectDirectoryAttributes<'a>
impl<'a> Clone for SubjectDirectoryAttributes<'a>
Source§fn clone(&self) -> SubjectDirectoryAttributes<'a>
fn clone(&self) -> SubjectDirectoryAttributes<'a>
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<'a> Debug for SubjectDirectoryAttributes<'a>
impl<'a> Debug for SubjectDirectoryAttributes<'a>
Source§impl<'a> Default for SubjectDirectoryAttributes<'a>
impl<'a> Default for SubjectDirectoryAttributes<'a>
Source§fn default() -> SubjectDirectoryAttributes<'a>
fn default() -> SubjectDirectoryAttributes<'a>
Returns the “default value” for a type. Read more
Source§impl<'a> DerWrite for SubjectDirectoryAttributes<'a>
impl<'a> DerWrite for SubjectDirectoryAttributes<'a>
impl<'a> Eq for SubjectDirectoryAttributes<'a>
Source§impl<'a> From<SubjectDirectoryAttributes<'a>> for Vec<Attribute<'a>>
impl<'a> From<SubjectDirectoryAttributes<'a>> for Vec<Attribute<'a>>
Source§fn from(sequence_name: SubjectDirectoryAttributes<'a>) -> Self
fn from(sequence_name: SubjectDirectoryAttributes<'a>) -> Self
Converts to this type from the input type.
Source§impl HasOid for SubjectDirectoryAttributes<'_>
impl HasOid for SubjectDirectoryAttributes<'_>
fn oid() -> &'static ObjectIdentifier
Source§impl<'a> Hash for SubjectDirectoryAttributes<'a>
impl<'a> Hash for SubjectDirectoryAttributes<'a>
Source§impl IsCritical for SubjectDirectoryAttributes<'_>
impl IsCritical for SubjectDirectoryAttributes<'_>
fn is_critical(&self) -> bool
Source§impl<'a> PartialEq for SubjectDirectoryAttributes<'a>
impl<'a> PartialEq for SubjectDirectoryAttributes<'a>
Source§fn eq(&self, other: &SubjectDirectoryAttributes<'a>) -> bool
fn eq(&self, other: &SubjectDirectoryAttributes<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<'a> StructuralPartialEq for SubjectDirectoryAttributes<'a>
Auto Trait Implementations§
impl<'a> Freeze for SubjectDirectoryAttributes<'a>
impl<'a> RefUnwindSafe for SubjectDirectoryAttributes<'a>
impl<'a> Send for SubjectDirectoryAttributes<'a>
impl<'a> Sync for SubjectDirectoryAttributes<'a>
impl<'a> Unpin for SubjectDirectoryAttributes<'a>
impl<'a> UnsafeUnpin for SubjectDirectoryAttributes<'a>
impl<'a> UnwindSafe for SubjectDirectoryAttributes<'a>
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