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§
Source§impl Clone for BlockTrace
impl Clone for BlockTrace
Source§fn clone(&self) -> BlockTrace
fn clone(&self) -> BlockTrace
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for BlockTrace
impl Debug for BlockTrace
Source§impl<'de> Deserialize<'de> for BlockTrace
impl<'de> Deserialize<'de> for BlockTrace
Source§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
Source§impl PartialEq for BlockTrace
impl PartialEq for BlockTrace
Source§impl Serialize for BlockTrace
impl Serialize for BlockTrace
impl StructuralPartialEq for BlockTrace
Auto Trait Implementations§
impl Freeze for BlockTrace
impl RefUnwindSafe for BlockTrace
impl Send for BlockTrace
impl Sync for BlockTrace
impl Unpin for BlockTrace
impl UnwindSafe for BlockTrace
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more