pub enum SignatureError {
FromBytes(&'static str),
FromHex(FromHexError),
InvalidParity(u64),
K256(Error),
}
Expand description
Errors in signature parsing or verification.
Variants§
FromBytes(&'static str)
Error converting from bytes.
FromHex(FromHexError)
Error converting hex to bytes.
InvalidParity(u64)
Invalid parity.
K256(Error)
Available on crate feature
k256
only.k256 error
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
Available on crate feature std
only.
impl Error for SignatureError
Available on crate feature
std
only.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 From<Error> for SignatureError
Available on crate feature k256
only.
impl From<Error> for SignatureError
Available on crate feature
k256
only.Source§impl From<FromHexError> for SignatureError
impl From<FromHexError> for SignatureError
Source§fn from(err: FromHexError) -> Self
fn from(err: FromHexError) -> Self
Converts to this type from the input type.
Source§impl From<Infallible> for SignatureError
impl From<Infallible> for SignatureError
Source§fn from(_: Infallible) -> Self
fn from(_: Infallible) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SignatureError
impl !RefUnwindSafe for SignatureError
impl Send for SignatureError
impl Sync for SignatureError
impl Unpin for SignatureError
impl !UnwindSafe 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