Enum ic_web3_rs::signing::RecoveryError
source · pub enum RecoveryError {
InvalidMessage,
InvalidSignature,
}
Expand description
Error during sender recovery.
Variants§
InvalidMessage
A message to recover is invalid. Has to be a non-zero 32-bytes slice.
InvalidSignature
A signature is invalid and the sender could not be recovered.
Trait Implementations§
source§impl Clone for RecoveryError
impl Clone for RecoveryError
source§fn clone(&self) -> RecoveryError
fn clone(&self) -> RecoveryError
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 RecoveryError
impl Debug for RecoveryError
source§impl Display for RecoveryError
impl Display for RecoveryError
source§impl Error for RecoveryError
impl Error for RecoveryError
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<RecoveryError> for Error
impl From<RecoveryError> for Error
source§fn from(original: RecoveryError) -> Error
fn from(original: RecoveryError) -> Error
Converts to this type from the input type.
source§impl PartialEq<RecoveryError> for RecoveryError
impl PartialEq<RecoveryError> for RecoveryError
source§fn eq(&self, other: &RecoveryError) -> bool
fn eq(&self, other: &RecoveryError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for RecoveryError
Auto Trait Implementations§
impl RefUnwindSafe for RecoveryError
impl Send for RecoveryError
impl Sync for RecoveryError
impl Unpin for RecoveryError
impl UnwindSafe for RecoveryError
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