Struct ethcore::trace_types::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.

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 !=.

impl Encodable for VMExecutedOperation
[src]

Append a value to the stream

Get rlp-encoded bytes for this instance

impl Decodable for VMExecutedOperation
[src]

Decode a value from RLP bytes