pub enum MasterCipher {
Aes256,
}
Expand description
The encryption algorithm for the master data.
Variants§
Aes256
Advanced Encryption Standard (Rijndael) with 256 bit key.
Trait Implementations§
Source§impl Clone for MasterCipher
impl Clone for MasterCipher
Source§fn clone(&self) -> MasterCipher
fn clone(&self) -> MasterCipher
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 MasterCipher
impl Debug for MasterCipher
Source§impl Ord for MasterCipher
impl Ord for MasterCipher
Source§fn cmp(&self, other: &MasterCipher) -> Ordering
fn cmp(&self, other: &MasterCipher) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for MasterCipher
impl PartialEq for MasterCipher
Source§impl PartialOrd for MasterCipher
impl PartialOrd for MasterCipher
impl Eq for MasterCipher
impl StructuralPartialEq for MasterCipher
Auto Trait Implementations§
impl Freeze for MasterCipher
impl RefUnwindSafe for MasterCipher
impl Send for MasterCipher
impl Sync for MasterCipher
impl Unpin for MasterCipher
impl UnwindSafe for MasterCipher
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