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

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter.

impl Display for Error
[src]

Formats the value using the given formatter.

impl From<IoError> for Error
[src]

Performs the conversion.

impl From<EthKeyError> for Error
[src]

Performs the conversion.

impl From<EthCryptoError> for Error
[src]

Performs the conversion.