Enum ethstore::Error
[−]
[src]
pub enum Error { Io(IoError), InvalidPassword, InvalidSecret, InvalidCryptoMeta, InvalidAccount, InvalidMessage, InvalidKeyFile(String), VaultsAreNotSupported, UnsupportedVault, InvalidVaultName, VaultNotFound, CreationFailed, EthKey(EthKeyError), EthCrypto(EthCryptoError), Custom(String), }
Variants
Io(IoError)
InvalidPassword
InvalidSecret
InvalidCryptoMeta
InvalidAccount
InvalidMessage
InvalidKeyFile(String)
VaultsAreNotSupported
UnsupportedVault
InvalidVaultName
VaultNotFound
CreationFailed
EthKey(EthKeyError)
EthCrypto(EthCryptoError)
Custom(String)
Trait Implementations
impl Debug for Error
[src]
impl Display for Error
[src]
impl From<IoError> for Error
[src]
impl From<EthKeyError> for Error
[src]
fn from(err: EthKeyError) -> Self
Performs the conversion.
impl From<EthCryptoError> for Error
[src]
fn from(err: EthCryptoError) -> Self
Performs the conversion.