Struct ethcore::trace::LocalizedTrace
[−]
[src]
pub struct LocalizedTrace {
pub action: Action,
pub result: Res,
pub subtraces: usize,
pub trace_address: Vec<usize>,
pub transaction_number: Option<usize>,
pub transaction_hash: Option<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: Option<usize>
Transaction number within the block.
transaction_hash: Option<H256>
Signed transaction hash.
block_number: BlockNumber
Block number.
block_hash: H256
Block hash.
Trait Implementations
impl Debug for LocalizedTrace[src]
impl Debug for LocalizedTracefn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
fn fmt(&self, __arg_0: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl PartialEq for LocalizedTrace[src]
impl PartialEq for LocalizedTracefn eq(&self, __arg_0: &LocalizedTrace) -> bool[src]
fn eq(&self, __arg_0: &LocalizedTrace) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &LocalizedTrace) -> bool[src]
fn ne(&self, __arg_0: &LocalizedTrace) -> boolThis method tests for !=.
impl Clone for LocalizedTrace[src]
impl Clone for LocalizedTracefn clone(&self) -> LocalizedTrace[src]
fn clone(&self) -> LocalizedTraceReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
Auto Trait Implementations
impl Send for LocalizedTrace
impl Send for LocalizedTraceimpl Sync for LocalizedTrace
impl Sync for LocalizedTrace