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: OctetStringdate: Option<GeneralizedTime>other: Option<OtherKeyAttribute>Trait Implementations
sourceimpl Clone for RecipientKeyIdentifier
impl Clone for RecipientKeyIdentifier
sourcefn clone(&self) -> RecipientKeyIdentifier
fn clone(&self) -> RecipientKeyIdentifier
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for RecipientKeyIdentifier
impl Debug for RecipientKeyIdentifier
sourceimpl PartialEq<RecipientKeyIdentifier> for RecipientKeyIdentifier
impl PartialEq<RecipientKeyIdentifier> for RecipientKeyIdentifier
sourcefn eq(&self, other: &RecipientKeyIdentifier) -> bool
fn eq(&self, other: &RecipientKeyIdentifier) -> bool
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.