Enum ethers_signers::WalletError [−][src]
pub enum WalletError {
Bip32Error(Bip32Error),
Bip39Error(MnemonicError),
EthKeystoreError(KeystoreError),
EcdsaError(Error),
HexError(FromHexError),
IoError(Error),
MnemonicBuilderError(MnemonicBuilderError),
}
Expand description
Error thrown by the Wallet module
Variants
Bip32Error(Bip32Error)
Error propagated from the BIP-32 crate
Tuple Fields of Bip32Error
0: Bip32Error
Bip39Error(MnemonicError)
Error propagated from the BIP-39 crate
Tuple Fields of Bip39Error
EthKeystoreError(KeystoreError)
Underlying eth keystore error
Tuple Fields of EthKeystoreError
EcdsaError(Error)
Error propagated from k256’s ECDSA module
Tuple Fields of EcdsaError
0: Error
HexError(FromHexError)
Error propagated from the hex crate.
Tuple Fields of HexError
0: FromHexError
IoError(Error)
Error propagated by IO operations
Tuple Fields of IoError
0: Error
Error propagated from the mnemonic builder module.
Trait Implementations
Performs the conversion.
Performs the conversion.
Performs the conversion.
Performs the conversion.