pub enum SnapshotEncryption {
Key(EncryptionKey),
Password(SnapshotPassword),
}Variants§
Key(EncryptionKey)
Password(SnapshotPassword)
Trait Implementations§
Source§impl Clone for SnapshotEncryption
impl Clone for SnapshotEncryption
Source§fn clone(&self) -> SnapshotEncryption
fn clone(&self) -> SnapshotEncryption
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 SnapshotEncryption
impl Debug for SnapshotEncryption
Source§impl From<EncryptionKey> for SnapshotEncryption
impl From<EncryptionKey> for SnapshotEncryption
Source§fn from(value: EncryptionKey) -> Self
fn from(value: EncryptionKey) -> Self
Converts to this type from the input type.
Source§impl From<SnapshotPassword> for SnapshotEncryption
impl From<SnapshotPassword> for SnapshotEncryption
Source§fn from(value: SnapshotPassword) -> Self
fn from(value: SnapshotPassword) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SnapshotEncryption
impl PartialEq for SnapshotEncryption
Source§fn eq(&self, other: &SnapshotEncryption) -> bool
fn eq(&self, other: &SnapshotEncryption) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for SnapshotEncryption
impl StructuralPartialEq for SnapshotEncryption
Auto Trait Implementations§
impl Freeze for SnapshotEncryption
impl RefUnwindSafe for SnapshotEncryption
impl Send for SnapshotEncryption
impl Sync for SnapshotEncryption
impl Unpin for SnapshotEncryption
impl UnsafeUnpin for SnapshotEncryption
impl UnwindSafe for SnapshotEncryption
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