Enum ethcore::client::Error [] [src]

pub enum Error {
    Trie(TrieError),
    Database(Error),
    Util(UtilError),
}

Client configuration errors.

Variants

TrieDB-related error.

Database error

Util error

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter. Read more

impl From<TrieError> for Error
[src]

Performs the conversion.

impl From<UtilError> for Error
[src]

Performs the conversion.

impl<E> From<Box<E>> for Error where
    Error: From<E>, 
[src]

Performs the conversion.

impl Display for Error
[src]

Formats the value using the given formatter. Read more

impl From<ClientError> for Error
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for Error

impl !Sync for Error