Enum web3_signature::SignatureError
source · pub enum SignatureError {
InvalidLength(usize),
RecoveryId,
DecodingError(FromHexError),
}
Expand description
Errors thrown converting to and from signatures.
Variants§
InvalidLength(usize)
Invalid length, secp256k1 signatures are 65 bytes
RecoveryId
Expected a recovery identifier.
DecodingError(FromHexError)
When parsing a signature from string to hex
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)>
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<FromHexError> for SignatureError
impl From<FromHexError> for SignatureError
source§fn from(source: FromHexError) -> Self
fn from(source: FromHexError) -> Self
Converts to this type from the input type.