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

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

Client configuration errors.

Variants

TraceDB configuration error.

TrieDB-related error.

Database error

Util error

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter.

impl From<TraceError> for Error
[src]

Performs the conversion.

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.