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: Option<usize>,
    pub transaction_hash: Option<H256>,
    pub block_number: BlockNumber,
    pub block_hash: H256,
}

Localized trace.

Fields

Type of action performed by a transaction.

Result of this action.

Number of subtraces.

Exact location of trace.

[index in root, index in first CALL, index in second CALL, ...]

Transaction number within the block.

Signed transaction hash.

Block number.

Block hash.

Trait Implementations

impl Debug for LocalizedTrace
[src]

Formats the value using the given formatter. Read more

impl PartialEq for LocalizedTrace
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Clone for LocalizedTrace
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for LocalizedTrace

impl Sync for LocalizedTrace