pub enum SignatureError {
BadLength(usize),
BadRecoveryId(u8),
Ecdsa(Error),
}Expand description
Errors produced when constructing a RecoverableSignature.
Variants§
BadLength(usize)
The signature byte slice was not exactly 65 bytes (r || s || v).
BadRecoveryId(u8)
The recovery id byte was not 0 or 1 (after normalising 27/28).
Ecdsa(Error)
The underlying ECDSA library rejected the signature scalars.
Trait Implementations§
Source§impl Debug for SignatureError
impl Debug for SignatureError
Source§impl Display for SignatureError
impl Display for SignatureError
Source§impl Error for SignatureError
impl Error for SignatureError
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()
Auto Trait Implementations§
impl !RefUnwindSafe for SignatureError
impl !UnwindSafe for SignatureError
impl Freeze for SignatureError
impl Send for SignatureError
impl Sync for SignatureError
impl Unpin for SignatureError
impl UnsafeUnpin for SignatureError
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