pub struct Trace {
pub action: TraceAction,
pub block_hash: Hash,
pub block_number: u64,
pub result: Option<TraceResult>,
pub subtraces: Option<u64>,
pub trace_address: Option<Vec<u64>>,
pub transaction_hash: Option<Hash>,
pub transaction_position: Option<u64>,
pub kind: Option<String>,
pub error: Option<String>,
}Expand description
Evm trace object (parity style, returned from trace_block request on RPC)
See trace_block documentation online for meaning of fields
Fields§
§action: TraceAction§block_hash: Hash§block_number: u64§result: Option<TraceResult>§subtraces: Option<u64>§trace_address: Option<Vec<u64>>§transaction_hash: Option<Hash>§transaction_position: Option<u64>§kind: Option<String>§error: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Trace
impl<'de> Deserialize<'de> for Trace
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
impl Eq for Trace
impl StructuralPartialEq for Trace
Auto Trait Implementations§
impl Freeze for Trace
impl RefUnwindSafe for Trace
impl Send for Trace
impl Sync for Trace
impl Unpin for Trace
impl UnwindSafe for Trace
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