pub enum EncryptedDataType {
Element,
Content,
Other(String),
}Expand description
The Type attribute on an EncryptedData element.
Variants§
Element
The plaintext contains one complete XML element.
Content
The plaintext contains the encrypted element’s child content.
Other(String)
An application-defined or empty type hint whose plaintext remains opaque.
Trait Implementations§
Source§impl Clone for EncryptedDataType
impl Clone for EncryptedDataType
Source§fn clone(&self) -> EncryptedDataType
fn clone(&self) -> EncryptedDataType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 EncryptedDataType
impl Debug for EncryptedDataType
impl Eq for EncryptedDataType
Source§impl PartialEq for EncryptedDataType
impl PartialEq for EncryptedDataType
impl StructuralPartialEq for EncryptedDataType
Auto Trait Implementations§
impl Freeze for EncryptedDataType
impl RefUnwindSafe for EncryptedDataType
impl Send for EncryptedDataType
impl Sync for EncryptedDataType
impl Unpin for EncryptedDataType
impl UnsafeUnpin for EncryptedDataType
impl UnwindSafe for EncryptedDataType
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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