pub enum EllipticCurveError {
InvalidKey,
Unspecified,
InvalidSignature,
}Variants§
Trait Implementations§
Source§impl Clone for EllipticCurveError
impl Clone for EllipticCurveError
Source§fn clone(&self) -> EllipticCurveError
fn clone(&self) -> EllipticCurveError
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 moreimpl Copy for EllipticCurveError
Source§impl Debug for EllipticCurveError
impl Debug for EllipticCurveError
Source§impl Display for EllipticCurveError
impl Display for EllipticCurveError
impl Eq for EllipticCurveError
Source§impl Error for EllipticCurveError
Available on crate feature std only.
impl Error for EllipticCurveError
Available on crate feature
std only.1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns 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 PartialEq for EllipticCurveError
impl PartialEq for EllipticCurveError
Source§fn eq(&self, other: &EllipticCurveError) -> bool
fn eq(&self, other: &EllipticCurveError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for EllipticCurveError
Auto Trait Implementations§
impl Freeze for EllipticCurveError
impl RefUnwindSafe for EllipticCurveError
impl Send for EllipticCurveError
impl Sync for EllipticCurveError
impl Unpin for EllipticCurveError
impl UnsafeUnpin for EllipticCurveError
impl UnwindSafe for EllipticCurveError
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