Enum ethcore::executed::CallError  [−][src]
pub enum CallError {
    TransactionNotFound,
    StatePruned,
    Exceptional,
    StateCorrupt,
    Execution(ExecutionError),
}Result of executing the transaction.
Variants
TransactionNotFoundCouldn't find the transaction in the chain.
StatePrunedCouldn't find requested block's state in the chain.
ExceptionalCouldn't find an amount of gas that didn't result in an exception.
StateCorruptCorrupt state.
Execution(ExecutionError)Error executing.
Trait Implementations
impl PartialEq for CallError[src] 
impl PartialEq for CallErrorfn eq(&self, other: &CallError) -> bool[src] 
fn eq(&self, other: &CallError) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &CallError) -> bool[src] 
fn ne(&self, other: &CallError) -> boolThis method tests for !=.
impl Debug for CallError[src] 
impl Debug for CallErrorfn fmt(&self, f: &mut Formatter) -> Result[src] 
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Clone for CallError[src] 
impl Clone for CallErrorfn clone(&self) -> CallError[src] 
fn clone(&self) -> CallErrorReturns 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 CallErrorfn from(error: ExecutionError) -> Self[src] 
fn from(error: ExecutionError) -> SelfPerforms the conversion.
impl Display for CallError[src] 
impl Display for CallError