pub enum EncryptType {
AES128,
AES192,
AES256,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for EncryptType
impl Clone for EncryptType
Source§fn clone(&self) -> EncryptType
fn clone(&self) -> EncryptType
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 moreimpl Copy for EncryptType
Auto Trait Implementations§
impl Freeze for EncryptType
impl RefUnwindSafe for EncryptType
impl Send for EncryptType
impl Sync for EncryptType
impl Unpin for EncryptType
impl UnwindSafe for EncryptType
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