pub enum AEADCipher {
None,
Aes256GcmSiv,
}Expand description
The AEAD cipher algorithms supported by moshpit key generation.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for AEADCipher
impl Clone for AEADCipher
Source§fn clone(&self) -> AEADCipher
fn clone(&self) -> AEADCipher
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 AEADCipher
impl Debug for AEADCipher
Source§impl PartialEq for AEADCipher
impl PartialEq for AEADCipher
Source§fn eq(&self, other: &AEADCipher) -> bool
fn eq(&self, other: &AEADCipher) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl TryFrom<&[u8]> for AEADCipher
impl TryFrom<&[u8]> for AEADCipher
Source§impl TryFrom<&str> for AEADCipher
impl TryFrom<&str> for AEADCipher
impl Copy for AEADCipher
impl Eq for AEADCipher
impl StructuralPartialEq for AEADCipher
Auto Trait Implementations§
impl Freeze for AEADCipher
impl RefUnwindSafe for AEADCipher
impl Send for AEADCipher
impl Sync for AEADCipher
impl Unpin for AEADCipher
impl UnsafeUnpin for AEADCipher
impl UnwindSafe for AEADCipher
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