pub enum Error {
IncorrectSignature,
InvalidMessage,
InvalidPublicKey,
InvalidSignature,
InvalidSecretKey,
InvalidSharedSecret,
InvalidRecoveryId,
InvalidTweak,
NotEnoughMemory,
InvalidPublicKeySum,
InvalidParityValue(InvalidParityValue),
InvalidEllSwift,
}
Expand description
The main error type for this library.
Variants§
IncorrectSignature
Signature failed verification.
InvalidMessage
Bad sized message (“messages” are actually fixed-sized digests constants::MESSAGE_SIZE
).
InvalidPublicKey
Bad public key.
InvalidSignature
Bad signature.
InvalidSecretKey
Bad secret key.
Bad shared secret.
InvalidRecoveryId
Bad recovery id.
InvalidTweak
Tried to add/multiply by an invalid tweak.
NotEnoughMemory
Didn’t pass enough memory to context creation with preallocated memory.
InvalidPublicKeySum
Bad set of public keys.
InvalidParityValue(InvalidParityValue)
The only valid parity values are 0 or 1.
InvalidEllSwift
Bad EllSwift value
Trait Implementations§
§impl Error for Error
impl Error for Error
§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()
§impl From<Error> for FromSliceError
impl From<Error> for FromSliceError
§fn from(e: Error) -> FromSliceError
fn from(e: Error) -> FromSliceError
Converts to this type from the input type.
§impl From<Error> for FromWifError
impl From<Error> for FromWifError
§fn from(e: Error) -> FromWifError
fn from(e: Error) -> FromWifError
Converts to this type from the input type.
§impl From<Error> for MessageSignatureError
impl From<Error> for MessageSignatureError
§fn from(e: Error) -> MessageSignatureError
fn from(e: Error) -> MessageSignatureError
Converts to this type from the input type.
§impl From<Error> for ParseCompressedPublicKeyError
impl From<Error> for ParseCompressedPublicKeyError
§fn from(e: Error) -> ParseCompressedPublicKeyError
fn from(e: Error) -> ParseCompressedPublicKeyError
Converts to this type from the input type.
§impl From<Error> for SigFromSliceError
impl From<Error> for SigFromSliceError
§fn from(e: Error) -> SigFromSliceError
fn from(e: Error) -> SigFromSliceError
Converts to this type from the input type.
§impl From<InvalidParityValue> for Error
impl From<InvalidParityValue> for Error
§fn from(error: InvalidParityValue) -> Error
fn from(error: InvalidParityValue) -> Error
Converts to this type from the input type.
§impl Ord for Error
impl Ord for Error
§impl PartialOrd for Error
impl PartialOrd for Error
§fn partial_cmp(&self, other: &Error) -> Option<Ordering>
fn partial_cmp(&self, other: &Error) -> 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 Error
impl Eq for Error
impl StructuralPartialEq for Error
Auto Trait Implementations§
impl Freeze for Error
impl RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl UnwindSafe for Error
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
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more