Enum pkcs7::encrypted_data_content::Version
source · [−]pub enum Version {
V0,
}
Expand description
Syntax version of the encrypted-data
content type.
Version ::= Integer
The only version supported by this library is 0
.
See RFC 5652 § 8.
Variants
V0
syntax version 0 for EncryptedDataContent.
Trait Implementations
sourceimpl<'a> DecodeValue<'a> for Version
impl<'a> DecodeValue<'a> for Version
sourceimpl EncodeValue for Version
impl EncodeValue for Version
impl Copy for Version
impl Eq for Version
impl StructuralEq for Version
impl StructuralPartialEq for Version
Auto Trait Implementations
impl RefUnwindSafe for Version
impl Send for Version
impl Sync for Version
impl Unpin for Version
impl UnwindSafe for Version
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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<'a, T> Choice<'a> for T where
T: Decodable<'a> + FixedTag,
impl<'a, T> Choice<'a> for T where
T: Decodable<'a> + FixedTag,
sourcefn can_decode(tag: Tag) -> bool
fn can_decode(tag: Tag) -> bool
Is the provided Tag
decodable as a variant of this CHOICE
?