Enum ethcore::executed::CallError
[−]
[src]
pub enum CallError { TransactionNotFound, StatePruned, Exceptional, StateCorrupt, Execution(ExecutionError), }
Result of executing the transaction.
Variants
TransactionNotFound
Couldn't find the transaction in the chain.
StatePruned
Couldn't find requested block's state in the chain.
Exceptional
Couldn't find an amount of gas that didn't result in an exception.
StateCorrupt
Corrupt state.
Execution(ExecutionError)
Error executing.
Trait Implementations
impl PartialEq for CallError
[src]
impl PartialEq for CallError
fn eq(&self, __arg_0: &CallError) -> bool
[src]
fn eq(&self, __arg_0: &CallError) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &CallError) -> bool
[src]
fn ne(&self, __arg_0: &CallError) -> bool
This method tests for !=
.
impl Debug for CallError
[src]
impl Debug for CallError
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 Clone for CallError
[src]
impl Clone for CallError
fn clone(&self) -> CallError
[src]
fn clone(&self) -> CallError
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
1.0.0
[src]Performs copy-assignment from source
. Read more
impl From<ExecutionError> for CallError
[src]
impl From<ExecutionError> for CallError
fn from(error: ExecutionError) -> Self
[src]
fn from(error: ExecutionError) -> Self
Performs the conversion.
impl Display for CallError
[src]
impl Display for CallError