pub struct RecipientKeyIdentifier {
pub subject_key_identifier: SubjectKeyIdentifier,
pub date: Option<GeneralizedTime>,
pub other: Option<Attribute>,
}Expand description
The RecipientKeyIdentifier type is defined in RFC 5652 Section 6.2.2.
RecipientKeyIdentifier ::= SEQUENCE {
subjectKeyIdentifier SubjectKeyIdentifier,
date GeneralizedTime OPTIONAL,
other OtherKeyAttribute OPTIONAL }Fields§
§subject_key_identifier: SubjectKeyIdentifier§date: Option<GeneralizedTime>§other: Option<Attribute>Trait Implementations§
Source§impl Clone for RecipientKeyIdentifier
impl Clone for RecipientKeyIdentifier
Source§fn clone(&self) -> RecipientKeyIdentifier
fn clone(&self) -> RecipientKeyIdentifier
Returns a duplicate 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 RecipientKeyIdentifier
impl Debug for RecipientKeyIdentifier
Source§impl<'__der_lifetime> DecodeValue<'__der_lifetime> for RecipientKeyIdentifier
impl<'__der_lifetime> DecodeValue<'__der_lifetime> for RecipientKeyIdentifier
Source§impl<'__der_lifetime> EncodeValue for RecipientKeyIdentifier
impl<'__der_lifetime> EncodeValue for RecipientKeyIdentifier
Source§impl PartialEq for RecipientKeyIdentifier
impl PartialEq for RecipientKeyIdentifier
impl Eq for RecipientKeyIdentifier
impl<'__der_lifetime> Sequence<'__der_lifetime> for RecipientKeyIdentifier
impl StructuralPartialEq for RecipientKeyIdentifier
Auto Trait Implementations§
impl Freeze for RecipientKeyIdentifier
impl RefUnwindSafe for RecipientKeyIdentifier
impl Send for RecipientKeyIdentifier
impl Sync for RecipientKeyIdentifier
impl Unpin for RecipientKeyIdentifier
impl UnwindSafe for RecipientKeyIdentifier
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.