#[repr(u64)]pub enum EncryptionType {
None = 0,
Aes = 1,
}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 From<EncryptionType> for u64
impl From<EncryptionType> for u64
Source§fn from(v: EncryptionType) -> Self
fn from(v: EncryptionType) -> Self
Converts to this type from the input type.
Source§impl PartialEq for EncryptionType
impl PartialEq for EncryptionType
Source§impl TryFrom<u64> for EncryptionType
impl TryFrom<u64> 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