Enum ethcore::client::Error
[−]
[src]
pub enum Error { Trie(TrieError), Database(Error), Util(UtilError), }
Client configuration errors.
Variants
Trie(TrieError)
TrieDB-related error.
Database(Error)
Database error
Util(UtilError)
Util error
Trait Implementations
impl Debug for Error
[src]
impl Debug for Error
fn fmt(&self, __arg_0: &mut Formatter) -> Result
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl From<TrieError> for Error
[src]
impl From<TrieError> for Error
impl From<UtilError> for Error
[src]
impl From<UtilError> for Error
impl<E> From<Box<E>> for Error where
Error: From<E>,
[src]
impl<E> From<Box<E>> for Error where
Error: From<E>,
impl Display for Error
[src]
impl Display for Error
fn fmt(&self, f: &mut Formatter) -> Result<(), FmtError>
[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), FmtError>
Formats the value using the given formatter. Read more
impl From<ClientError> for Error
[src]
impl From<ClientError> for Error
fn from(err: ClientError) -> Error
[src]
fn from(err: ClientError) -> Error
Performs the conversion.