#[non_exhaustive]pub enum EncryptedFileInfo {
V2(V2EncryptedFileInfo),
}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§
Source§impl EncryptedFileInfo
impl EncryptedFileInfo
Sourcepub fn version(&self) -> &str
pub fn version(&self) -> &str
Get the version of the attachment encryption protocol.
This matches the v field in the serialized data.
Sourcepub fn custom_data(&self) -> Option<&JsonObject>
pub fn custom_data(&self) -> Option<&JsonObject>
Get the data of the attachment encryption protocol, if it doesn’t match one of the known variants.
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<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::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) -> Self
fn from(value: V2EncryptedFileInfo) -> Self
Converts to this type from the input type.
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