Enum ethcore::trace::TraceError  [−][src]
pub enum TraceError {
    OutOfGas,
    BadJumpDestination,
    BadInstruction,
    StackUnderflow,
    OutOfStack,
    BuiltIn,
    Internal,
    MutableCallInStaticContext,
    Wasm,
    OutOfBounds,
    Reverted,
}Trace evm errors.
Variants
OutOfGasOutOfGas is returned when transaction execution runs out of gas.
BadJumpDestinationBadJumpDestination is returned when execution tried to move
to position that wasn't marked with JUMPDEST instruction
BadInstructionBadInstructions is returned when given instruction is not supported
StackUnderflowStackUnderflow when there is not enough stack elements to execute instruction
OutOfStackWhen execution would exceed defined Stack Limit
BuiltInWhen builtin contract failed on input data
InternalReturned on evm internal error. Should never be ignored during development. Likely to cause consensus issues.
MutableCallInStaticContextWhen execution tries to modify the state in static context
WasmWasm error
OutOfBoundsContract tried to access past the return data buffer.
RevertedExecution has been reverted with REVERT instruction.
Trait Implementations
impl Debug for Error[src] 
impl Debug for Errorfn fmt(&self, f: &mut Formatter) -> Result[src] 
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl PartialEq for Error[src] 
impl PartialEq for Errorfn eq(&self, other: &Error) -> bool[src] 
fn eq(&self, other: &Error) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0[src] 
fn ne(&self, other: &Rhs) -> boolThis method tests for !=.
impl Clone for Error[src] 
impl Clone for Errorfn clone(&self) -> Error[src] 
fn clone(&self) -> ErrorReturns 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)Performs copy-assignment from source. Read more
impl<'a> From<&'a VmError> for Error[src] 
impl<'a> From<&'a VmError> for Errorimpl From<VmError> for Error[src] 
impl From<VmError> for Errorimpl Display for Error[src] 
impl Display for Errorfn fmt(&self, f: &mut Formatter) -> Result[src] 
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Encodable for Error[src] 
impl Encodable for Errorfn rlp_append(&self, s: &mut RlpStream)[src] 
fn rlp_append(&self, s: &mut RlpStream)Append a value to the stream
fn rlp_bytes(&self) -> ElasticArray1024<u8>[src] 
fn rlp_bytes(&self) -> ElasticArray1024<u8>Get rlp-encoded bytes for this instance
impl Decodable for Error[src] 
impl Decodable for Errorfn decode(rlp: &Rlp) -> Result<Self, DecoderError>[src] 
fn decode(rlp: &Rlp) -> Result<Self, DecoderError>Decode a value from RLP bytes
Auto Trait Implementations
impl Send for TraceError
impl Send for TraceErrorimpl Sync for TraceError
impl Sync for TraceError