#[non_exhaustive]pub enum EcdhError {
WeakPk,
InvalidPk(EcPkInvalid),
InvalidSk(EcSkInvalid),
}
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
WeakPk
public key provided for the ECDH is a weak key
InvalidPk(EcPkInvalid)
InvalidSk(EcSkInvalid)
Trait Implementations§
source§impl Error for EcdhError
impl Error for EcdhError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<EcPkInvalid> for EcdhError
impl From<EcPkInvalid> for EcdhError
source§fn from(v: EcPkInvalid) -> Self
fn from(v: EcPkInvalid) -> Self
Converts to this type from the input type.
source§impl From<EcSkInvalid> for EcdhError
impl From<EcSkInvalid> for EcdhError
source§fn from(v: EcSkInvalid) -> Self
fn from(v: EcSkInvalid) -> Self
Converts to this type from the input type.
source§impl PartialEq for EcdhError
impl PartialEq for EcdhError
impl Copy for EcdhError
impl Eq for EcdhError
impl StructuralPartialEq for EcdhError
Auto Trait Implementations§
impl Freeze for EcdhError
impl RefUnwindSafe for EcdhError
impl Send for EcdhError
impl Sync for EcdhError
impl Unpin for EcdhError
impl UnwindSafe for EcdhError
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