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