pub struct TrustedSubject {
pub attributes: Option<Attributes>,
/* private fields */
}
Expand description
Represents a single entry in the certificate trust list.
From MS-CAESO:
TrustedSubject ::= SEQUENCE {
subjectIdentifier SubjectIdentifier,
subjectAttributes Attributes OPTIONAL
}
Fields§
§attributes: Option<Attributes>
Any X.509 attributes attached to this TrustedSubject
.
Implementations§
Source§impl TrustedSubject
impl TrustedSubject
Sourcepub fn extended_key_usages(
&self,
) -> impl Iterator<Item = Result<ObjectIdentifier, Error>> + '_
pub fn extended_key_usages( &self, ) -> impl Iterator<Item = Result<ObjectIdentifier, Error>> + '_
Returns an iterator over all Extended Key Usages (EKUs) listed
in this TrustedSubject
.
Trait Implementations§
Source§impl Clone for TrustedSubject
impl Clone for TrustedSubject
Source§fn clone(&self) -> TrustedSubject
fn clone(&self) -> TrustedSubject
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 TrustedSubject
impl Debug for TrustedSubject
Source§impl<'__der_lifetime> DecodeValue<'__der_lifetime> for TrustedSubject
impl<'__der_lifetime> DecodeValue<'__der_lifetime> for TrustedSubject
Source§impl<'__der_lifetime> EncodeValue for TrustedSubject
impl<'__der_lifetime> EncodeValue for TrustedSubject
Source§impl PartialEq for TrustedSubject
impl PartialEq for TrustedSubject
impl Eq for TrustedSubject
impl<'__der_lifetime> Sequence<'__der_lifetime> for TrustedSubject
impl StructuralPartialEq for TrustedSubject
Auto Trait Implementations§
impl Freeze for TrustedSubject
impl RefUnwindSafe for TrustedSubject
impl Send for TrustedSubject
impl Sync for TrustedSubject
impl Unpin for TrustedSubject
impl UnwindSafe for TrustedSubject
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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.
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more