pub enum DecodeKeyResponseError {
DomainDecode(DomainDecodeError),
KeyDerivation,
}
Variants§
DomainDecode(DomainDecodeError)
KeyDerivation
Trait Implementations§
source§impl Clone for DecodeKeyResponseError
impl Clone for DecodeKeyResponseError
source§fn clone(&self) -> DecodeKeyResponseError
fn clone(&self) -> DecodeKeyResponseError
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 DecodeKeyResponseError
impl Debug for DecodeKeyResponseError
source§impl Ord for DecodeKeyResponseError
impl Ord for DecodeKeyResponseError
source§fn cmp(&self, other: &DecodeKeyResponseError) -> Ordering
fn cmp(&self, other: &DecodeKeyResponseError) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for DecodeKeyResponseError
impl PartialEq for DecodeKeyResponseError
source§fn eq(&self, other: &DecodeKeyResponseError) -> bool
fn eq(&self, other: &DecodeKeyResponseError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for DecodeKeyResponseError
impl PartialOrd for DecodeKeyResponseError
source§fn partial_cmp(&self, other: &DecodeKeyResponseError) -> Option<Ordering>
fn partial_cmp(&self, other: &DecodeKeyResponseError) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for DecodeKeyResponseError
impl Eq for DecodeKeyResponseError
impl StructuralPartialEq for DecodeKeyResponseError
Auto Trait Implementations§
impl Freeze for DecodeKeyResponseError
impl RefUnwindSafe for DecodeKeyResponseError
impl Send for DecodeKeyResponseError
impl Sync for DecodeKeyResponseError
impl Unpin for DecodeKeyResponseError
impl UnwindSafe for DecodeKeyResponseError
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