pub enum DecodeKeyRequestError {
    QuestionCount(usize),
    FirstQuestionNotA(QType),
    SecondQuestionNotA(QType),
    SharedSecretDerivation,
}Variants§
Trait Implementations§
source§impl Clone for DecodeKeyRequestError
 
impl Clone for DecodeKeyRequestError
source§fn clone(&self) -> DecodeKeyRequestError
 
fn clone(&self) -> DecodeKeyRequestError
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 DecodeKeyRequestError
 
impl Debug for DecodeKeyRequestError
source§impl Ord for DecodeKeyRequestError
 
impl Ord for DecodeKeyRequestError
source§fn cmp(&self, other: &DecodeKeyRequestError) -> Ordering
 
fn cmp(&self, other: &DecodeKeyRequestError) -> 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 DecodeKeyRequestError
 
impl PartialEq for DecodeKeyRequestError
source§fn eq(&self, other: &DecodeKeyRequestError) -> bool
 
fn eq(&self, other: &DecodeKeyRequestError) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl PartialOrd for DecodeKeyRequestError
 
impl PartialOrd for DecodeKeyRequestError
source§fn partial_cmp(&self, other: &DecodeKeyRequestError) -> Option<Ordering>
 
fn partial_cmp(&self, other: &DecodeKeyRequestError) -> 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 DecodeKeyRequestError
impl Eq for DecodeKeyRequestError
impl StructuralPartialEq for DecodeKeyRequestError
Auto Trait Implementations§
impl Freeze for DecodeKeyRequestError
impl RefUnwindSafe for DecodeKeyRequestError
impl Send for DecodeKeyRequestError
impl Sync for DecodeKeyRequestError
impl Unpin for DecodeKeyRequestError
impl UnwindSafe for DecodeKeyRequestError
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