Enum ethcore::executed::CallError
[−]
[src]
pub enum CallError { TransactionNotFound, StatePruned, Exceptional, 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.
Execution(ExecutionError)
Error executing.
Trait Implementations
impl PartialEq for CallError
[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
This method tests for !=
.
impl Debug for CallError
[src]
impl Clone for CallError
[src]
fn clone(&self) -> CallError
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more
impl From<ExecutionError> for CallError
[src]
fn from(error: ExecutionError) -> Self
Performs the conversion.