pub enum DecryptFailReason {
MissingKey,
TagFailed(String),
}Variants§
Trait Implementations§
Source§impl Clone for DecryptFailReason
impl Clone for DecryptFailReason
Source§fn clone(&self) -> DecryptFailReason
fn clone(&self) -> DecryptFailReason
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 DecryptFailReason
impl Debug for DecryptFailReason
Source§impl PartialEq for DecryptFailReason
impl PartialEq for DecryptFailReason
Source§fn eq(&self, other: &DecryptFailReason) -> bool
fn eq(&self, other: &DecryptFailReason) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for DecryptFailReason
impl StructuralPartialEq for DecryptFailReason
Auto Trait Implementations§
impl Freeze for DecryptFailReason
impl RefUnwindSafe for DecryptFailReason
impl Send for DecryptFailReason
impl Sync for DecryptFailReason
impl Unpin for DecryptFailReason
impl UnsafeUnpin for DecryptFailReason
impl UnwindSafe for DecryptFailReason
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