Struct ethcore::trace::VMTrace[][src]

pub struct VMTrace {
    pub parent_step: usize,
    pub code: Bytes,
    pub operations: Vec<VMOperation>,
    pub subs: Vec<VMTrace>,
}

A record of a full VM trace for a CALL/CREATE.

Fields

The step (i.e. index into operations) at which this trace corresponds.

The code to be executed.

The operations executed.

The sub traces for each interior action performed as part of this call/create. Thre is a 1:1 correspondance between these and a CALL/CREATE/CALLCODE/DELEGATECALL instruction.

Trait Implementations

impl Debug for VMTrace
[src]

Formats the value using the given formatter. Read more

impl Clone for VMTrace
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for VMTrace
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Default for VMTrace
[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations

impl Send for VMTrace

impl Sync for VMTrace