Struct ethers_core::types::VMOperation [−][src]
pub struct VMOperation {
pub pc: usize,
pub cost: u64,
pub ex: Option<VMExecutedOperation>,
pub sub: Option<VMTrace>,
}
Expand description
A record of the execution of a single VM operation.
Fields
pc: usize
The program counter.
cost: u64
The gas cost for this instruction.
ex: Option<VMExecutedOperation>
Information concerning the execution of the operation.
sub: Option<VMTrace>
Subordinate trace of the CALL/CREATE if applicable.
Trait Implementations
Returns the “default value” for a type. Read more
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
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 RefUnwindSafe for VMOperation
impl Send for VMOperation
impl Sync for VMOperation
impl Unpin for VMOperation
impl UnwindSafe for VMOperation
Blanket Implementations
Mutably borrows from an owned value. Read more