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

pub enum Error {
    Trie(TrieError),
    Io(Error),
}

Client configuration errors.

Variants

TrieDB-related error.

Io 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<Error> 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