#[non_exhaustive]pub enum EncryptedFileInfo {
V2(V2EncryptedFileInfo),
}Available on crate feature
events only.Expand description
Information about the encryption of a file.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
V2(V2EncryptedFileInfo)
Information about a file encrypted using version 2 of the attachment encryption protocol.
Implementations§
Trait Implementations§
Source§impl Clone for EncryptedFileInfo
impl Clone for EncryptedFileInfo
Source§fn clone(&self) -> EncryptedFileInfo
fn clone(&self) -> EncryptedFileInfo
Returns a duplicate 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 EncryptedFileInfo
impl Debug for EncryptedFileInfo
Source§impl<'de> Deserialize<'de> for EncryptedFileInfo
impl<'de> Deserialize<'de> for EncryptedFileInfo
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<EncryptedFileInfo, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<EncryptedFileInfo, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<V2EncryptedFileInfo> for EncryptedFileInfo
impl From<V2EncryptedFileInfo> for EncryptedFileInfo
Source§fn from(value: V2EncryptedFileInfo) -> EncryptedFileInfo
fn from(value: V2EncryptedFileInfo) -> EncryptedFileInfo
Converts to this type from the input type.
Source§impl Serialize for EncryptedFileInfo
impl Serialize for EncryptedFileInfo
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for EncryptedFileInfo
impl RefUnwindSafe for EncryptedFileInfo
impl Send for EncryptedFileInfo
impl Sync for EncryptedFileInfo
impl Unpin for EncryptedFileInfo
impl UnsafeUnpin for EncryptedFileInfo
impl UnwindSafe for EncryptedFileInfo
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> DropFlavorWrapper<T> for T
impl<T> DropFlavorWrapper<T> for T
§impl<T, UT> HandleAlloc<UT> for T
impl<T, UT> HandleAlloc<UT> for T
§fn new_handle(value: Arc<T>) -> Handle
fn new_handle(value: Arc<T>) -> Handle
Create a new handle for an Arc value Read more
§unsafe fn clone_handle(handle: Handle) -> Handle
unsafe fn clone_handle(handle: Handle) -> Handle
Clone a handle Read more
§unsafe fn consume_handle(handle: Handle) -> Arc<T>
unsafe fn consume_handle(handle: Handle) -> Arc<T>
Consume a handle, getting back the initial
Arc<> Read more