Enum ethers_signers::AwsSignerError
source · pub enum AwsSignerError {
SignError(RusotoError<SignError>),
GetPublicKeyError(RusotoError<GetPublicKeyError>),
K256(K256Error),
Spki(Error),
Other(String),
HexError(FromHexError),
Eip712Error(String),
}
Expand description
Errors produced by the AwsSigner
Variants§
SignError(RusotoError<SignError>)
GetPublicKeyError(RusotoError<GetPublicKeyError>)
K256(K256Error)
Spki(Error)
Other(String)
HexError(FromHexError)
Error when converting from a hex string
Eip712Error(String)
Error type from Eip712Error message
Trait Implementations§
source§impl Debug for AwsSignerError
impl Debug for AwsSignerError
source§impl Display for AwsSignerError
impl Display for AwsSignerError
source§impl Error for AwsSignerError
impl Error for AwsSignerError
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<Error> for AwsSignerError
impl From<Error> for AwsSignerError
source§impl From<Error> for AwsSignerError
impl From<Error> for AwsSignerError
source§impl From<FromHexError> for AwsSignerError
impl From<FromHexError> for AwsSignerError
source§fn from(source: FromHexError) -> Self
fn from(source: FromHexError) -> Self
Converts to this type from the input type.
source§impl From<RusotoError<GetPublicKeyError>> for AwsSignerError
impl From<RusotoError<GetPublicKeyError>> for AwsSignerError
source§fn from(source: RusotoError<GetPublicKeyError>) -> Self
fn from(source: RusotoError<GetPublicKeyError>) -> Self
Converts to this type from the input type.
source§impl From<RusotoError<SignError>> for AwsSignerError
impl From<RusotoError<SignError>> for AwsSignerError
source§fn from(source: RusotoError<SignError>) -> Self
fn from(source: RusotoError<SignError>) -> Self
Converts to this type from the input type.