Struct ethcore::trace::FlatTrace[][src]

pub struct FlatTrace {
    pub action: Action,
    pub result: Res,
    pub subtraces: usize,
    pub trace_address: VecDeque<usize>,
}

Trace localized in vector of traces produced by a single transaction.

Parent and children indexes refer to positions in this vector.

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, ...]

Methods

impl FlatTrace
[src]

Returns bloom of the trace.

Trait Implementations

impl Debug for FlatTrace
[src]

Formats the value using the given formatter. Read more

impl PartialEq for FlatTrace
[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 FlatTrace
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl HeapSizeOf for FlatTrace
[src]

Measure the size of any heap-allocated structures that hang off this value, but not the space taken up by the value itself (i.e. what size_of:: measures, more or less); that space is handled by the implementation of HeapSizeOf for Box below. Read more

impl Encodable for FlatTrace
[src]

Append a value to the stream

Get rlp-encoded bytes for this instance

impl Decodable for FlatTrace
[src]

Decode a value from RLP bytes

Auto Trait Implementations

impl Send for FlatTrace

impl Sync for FlatTrace