Struct ethers_core::types::BlockTrace [−][src]
pub struct BlockTrace {
pub output: Bytes,
pub trace: Option<Vec<TransactionTrace>>,
pub vm_trace: Option<VMTrace>,
pub state_diff: Option<StateDiff>,
pub transaction_hash: Option<H256>,
}
Expand description
Ad-Hoc trace API type
Fields
output: Bytes
Output Bytes
trace: Option<Vec<TransactionTrace>>
Transaction Trace
vm_trace: Option<VMTrace>
Virtual Machine Execution Trace
state_diff: Option<StateDiff>
State Difference
transaction_hash: Option<H256>
Transaction Hash
Trait Implementations
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 BlockTrace
impl Send for BlockTrace
impl Sync for BlockTrace
impl Unpin for BlockTrace
impl UnwindSafe for BlockTrace
Blanket Implementations
Mutably borrows from an owned value. Read more