Struct ethcore::trace::VMExecutedOperation[][src]

pub struct VMExecutedOperation {
    pub gas_used: U256,
    pub stack_push: Vec<U256>,
    pub mem_diff: Option<MemoryDiff>,
    pub store_diff: Option<StorageDiff>,
}

A record of an executed VM operation.

Fields

The total gas used.

The stack item placed, if any.

If altered, the memory delta.

The altered storage value, if any.

Trait Implementations

impl Debug for VMExecutedOperation
[src]

Formats the value using the given formatter. Read more

impl Clone for VMExecutedOperation
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for VMExecutedOperation
[src]

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

This method tests for !=.

Auto Trait Implementations

impl Send for VMExecutedOperation

impl Sync for VMExecutedOperation