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
gas_used: U256
The total gas used.
stack_push: Vec<U256>
The stack item placed, if any.
mem_diff: Option<MemoryDiff>
If altered, the memory delta.
store_diff: Option<StorageDiff>
The altered storage value, if any.
Trait Implementations
impl Debug for VMExecutedOperation
[src]
impl Debug for VMExecutedOperation
fn fmt(&self, __arg_0: &mut Formatter) -> Result
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl Clone for VMExecutedOperation
[src]
impl Clone for VMExecutedOperation
fn clone(&self) -> VMExecutedOperation
[src]
fn clone(&self) -> VMExecutedOperation
Returns 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)
1.0.0
[src]Performs copy-assignment from source
. Read more
impl PartialEq for VMExecutedOperation
[src]
impl PartialEq for VMExecutedOperation
fn eq(&self, __arg_0: &VMExecutedOperation) -> bool
[src]
fn eq(&self, __arg_0: &VMExecutedOperation) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &VMExecutedOperation) -> bool
[src]
fn ne(&self, __arg_0: &VMExecutedOperation) -> bool
This method tests for !=
.
Auto Trait Implementations
impl Send for VMExecutedOperation
impl Send for VMExecutedOperation
impl Sync for VMExecutedOperation
impl Sync for VMExecutedOperation