pub struct EncryptedData {
pub version: CmsVersion,
pub encrypted_content_info: EncryptedContentInfo,
pub unprotected_attributes: Option<UnprotectedAttributes>,
}
Expand description
Encrypted data.
EncryptedData ::= SEQUENCE {
version CMSVersion,
encryptedContentInfo EncryptedContentInfo,
unprotectedAttrs [1] IMPLICIT UnprotectedAttributes OPTIONAL }
Fields§
§version: CmsVersion
§encrypted_content_info: EncryptedContentInfo
§unprotected_attributes: Option<UnprotectedAttributes>
Trait Implementations§
Source§impl Clone for EncryptedData
impl Clone for EncryptedData
Source§fn clone(&self) -> EncryptedData
fn clone(&self) -> EncryptedData
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 EncryptedData
impl Debug for EncryptedData
Source§impl PartialEq for EncryptedData
impl PartialEq for EncryptedData
impl Eq for EncryptedData
impl StructuralPartialEq for EncryptedData
Auto Trait Implementations§
impl !Freeze for EncryptedData
impl RefUnwindSafe for EncryptedData
impl Send for EncryptedData
impl Sync for EncryptedData
impl Unpin for EncryptedData
impl UnwindSafe for EncryptedData
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