pub enum EncryptionType {
None,
Gcm,
Custom,
}Variants§
Trait Implementations§
Source§impl Clone for EncryptionType
impl Clone for EncryptionType
Source§fn clone(&self) -> EncryptionType
fn clone(&self) -> EncryptionType
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 EncryptionType
impl Debug for EncryptionType
Source§impl Default for EncryptionType
impl Default for EncryptionType
Source§fn default() -> EncryptionType
fn default() -> EncryptionType
Returns the “default value” for a type. Read more
Source§impl From<EncryptionType> for Type
impl From<EncryptionType> for Type
Source§fn from(value: EncryptionType) -> Self
fn from(value: EncryptionType) -> Self
Converts to this type from the input type.
Source§impl From<EncryptionType> for i32
impl From<EncryptionType> for i32
Source§fn from(value: EncryptionType) -> Self
fn from(value: EncryptionType) -> Self
Converts to this type from the input type.
Source§impl From<Type> for EncryptionType
impl From<Type> for EncryptionType
Source§impl PartialEq for EncryptionType
impl PartialEq for EncryptionType
impl Copy for EncryptionType
impl Eq for EncryptionType
impl StructuralPartialEq for EncryptionType
Auto Trait Implementations§
impl Freeze for EncryptionType
impl RefUnwindSafe for EncryptionType
impl Send for EncryptionType
impl Sync for EncryptionType
impl Unpin for EncryptionType
impl UnsafeUnpin for EncryptionType
impl UnwindSafe for EncryptionType
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