pub enum EncryptMode {
CBC,
ECB,
GCM,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for EncryptMode
impl Clone for EncryptMode
Source§fn clone(&self) -> EncryptMode
fn clone(&self) -> EncryptMode
Returns a copy 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 EncryptMode
Auto Trait Implementations§
impl Freeze for EncryptMode
impl RefUnwindSafe for EncryptMode
impl Send for EncryptMode
impl Sync for EncryptMode
impl Unpin for EncryptMode
impl UnwindSafe for EncryptMode
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