Enum pkcs7::ContentType
source · [−]pub enum ContentType {
Data,
SignedData,
EnvelopedData,
SignedAndEnvelopedData,
DigestedData,
EncryptedData,
}
Expand description
Indicates the type of content.
Variants
Data
Plain data content type
SignedData
Signed-data content type
EnvelopedData
Enveloped-data content type
SignedAndEnvelopedData
Signed-and-enveloped-data content type
DigestedData
Digested-data content type
EncryptedData
Encrypted-data content type
Implementations
sourceimpl ContentType
impl ContentType
sourcepub fn to_oid(&self) -> ObjectIdentifier
pub fn to_oid(&self) -> ObjectIdentifier
return OID for content type
sourcepub fn from_oid(oid: ObjectIdentifier) -> Option<Self>
pub fn from_oid(oid: ObjectIdentifier) -> Option<Self>
match content type to given OID
Trait Implementations
sourceimpl Clone for ContentType
impl Clone for ContentType
sourcefn clone(&self) -> ContentType
fn clone(&self) -> ContentType
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 more
sourceimpl Debug for ContentType
impl Debug for ContentType
sourceimpl<'a> DecodeValue<'a> for ContentType
impl<'a> DecodeValue<'a> for ContentType
sourcefn decode_value(
decoder: &mut Decoder<'a>,
length: Length
) -> Result<ContentType>
fn decode_value(
decoder: &mut Decoder<'a>,
length: Length
) -> Result<ContentType>
Attempt to decode this message using the provided Decoder
.
sourceimpl EncodeValue for ContentType
impl EncodeValue for ContentType
sourceimpl PartialEq<ContentType> for ContentType
impl PartialEq<ContentType> for ContentType
impl Copy for ContentType
impl Eq for ContentType
impl StructuralEq for ContentType
impl StructuralPartialEq for ContentType
Auto Trait Implementations
impl RefUnwindSafe for ContentType
impl Send for ContentType
impl Sync for ContentType
impl Unpin for ContentType
impl UnwindSafe for ContentType
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
?