Struct ethcore::trace::localized::LocalizedTrace
[−]
[src]
pub struct LocalizedTrace { pub action: Action, pub result: Res, pub subtraces: usize, pub trace_address: Vec<usize>, pub transaction_number: usize, pub transaction_hash: H256, pub block_number: BlockNumber, pub block_hash: H256, }
Localized trace.
Fields
action: Action
Type of action performed by a transaction.
result: Res
Result of this action.
subtraces: usize
Number of subtraces.
trace_address: Vec<usize>
Exact location of trace.
[index in root, index in first CALL, index in second CALL, ...]
transaction_number: usize
Transaction number within the block.
transaction_hash: H256
Signed transaction hash.
block_number: BlockNumber
Block number.
block_hash: H256
Block hash.
Trait Implementations
impl Debug for LocalizedTrace
[src]
impl PartialEq for LocalizedTrace
[src]
fn eq(&self, __arg_0: &LocalizedTrace) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &LocalizedTrace) -> bool
This method tests for !=
.
impl Clone for LocalizedTrace
[src]
fn clone(&self) -> LocalizedTrace
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more