pub enum AESAlgorithms {
AES128_CBC,
AES256_CBC,
AES128_CTR,
AES256_CTR,
}
Variants§
Trait Implementations§
Source§impl Clone for AESAlgorithms
impl Clone for AESAlgorithms
Source§fn clone(&self) -> AESAlgorithms
fn clone(&self) -> AESAlgorithms
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 AESAlgorithms
impl Debug for AESAlgorithms
impl Copy for AESAlgorithms
Auto Trait Implementations§
impl Freeze for AESAlgorithms
impl RefUnwindSafe for AESAlgorithms
impl Send for AESAlgorithms
impl Sync for AESAlgorithms
impl Unpin for AESAlgorithms
impl UnwindSafe for AESAlgorithms
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