pub struct RecipientKeyIdentifier {
pub subject_key_identifier: OctetString,
pub date: Option<GeneralizedTime>,
pub other: Option<OtherKeyAttribute>,
}
Expand description
Recipient key identifier.
RecipientKeyIdentifier ::= SEQUENCE {
subjectKeyIdentifier SubjectKeyIdentifier,
date GeneralizedTime OPTIONAL,
other OtherKeyAttribute OPTIONAL }
Fields§
§subject_key_identifier: OctetString
§date: Option<GeneralizedTime>
§other: Option<OtherKeyAttribute>
Trait Implementations§
source§impl Clone for RecipientKeyIdentifier
impl Clone for RecipientKeyIdentifier
source§fn clone(&self) -> RecipientKeyIdentifier
fn clone(&self) -> RecipientKeyIdentifier
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 RecipientKeyIdentifier
impl Debug for RecipientKeyIdentifier
source§impl PartialEq for RecipientKeyIdentifier
impl PartialEq for RecipientKeyIdentifier
source§fn eq(&self, other: &RecipientKeyIdentifier) -> bool
fn eq(&self, other: &RecipientKeyIdentifier) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for RecipientKeyIdentifier
impl StructuralEq for RecipientKeyIdentifier
impl StructuralPartialEq for RecipientKeyIdentifier
Auto Trait Implementations§
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
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.