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
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()
Source§impl From<Error> for SignatureError
Available on crate feature k256 only.
impl From<Error> for SignatureError
Available on crate feature
k256 only.Source§fn from(err: Error) -> SignatureError
fn from(err: Error) -> SignatureError
Converts to this type from the input type.
Source§impl From<FromHexError> for SignatureError
impl From<FromHexError> for SignatureError
Source§fn from(err: FromHexError) -> SignatureError
fn from(err: FromHexError) -> SignatureError
Converts to this type from the input type.
Source§impl From<Infallible> for SignatureError
impl From<Infallible> for SignatureError
Source§fn from(_: Infallible) -> SignatureError
fn from(_: Infallible) -> SignatureError
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 24 bytes
Size for each variant:
FromBytes: 16 bytesFromHex: 16 bytesInvalidParity: 8 bytesK256: 16 bytes