Struct ethcore::trace::VMOperation[][src]

pub struct VMOperation {
    pub pc: usize,
    pub instruction: u8,
    pub gas_cost: U256,
    pub executed: Option<VMExecutedOperation>,
}

A record of the execution of a single VM operation.

Fields

The program counter.

The instruction executed.

The gas cost for this instruction.

Information concerning the execution of the operation.

Trait Implementations

impl Debug for VMOperation
[src]

Formats the value using the given formatter. Read more

impl Clone for VMOperation
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for VMOperation
[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 VMOperation
[src]

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

Auto Trait Implementations

impl Send for VMOperation

impl Sync for VMOperation