pub struct TransactionTrace {
Show 23 fields pub id: String, pub block_num: u64, pub index: u64, pub block_time: Option<Timestamp>, pub producer_block_id: String, pub receipt: Option<TransactionReceiptHeader>, pub elapsed: i64, pub net_usage: u64, pub scheduled: bool, pub action_traces: Vec<ActionTrace>, pub failed_dtrx_trace: Option<Box<TransactionTrace>>, pub exception: Option<Exception>, pub error_code: u64, pub db_ops: Vec<DbOp>, pub kv_ops: Vec<KvOp>, pub dtrx_ops: Vec<DTrxOp>, pub feature_ops: Vec<FeatureOp>, pub perm_ops: Vec<PermOp>, pub ram_ops: Vec<RamOp>, pub ram_correction_ops: Vec<RamCorrectionOp>, pub rlimit_ops: Vec<RlimitOp>, pub table_ops: Vec<TableOp>, pub creation_tree: Vec<CreationFlatNode>,
}

Fields§

§id: String

SHA-256 (FIPS 180-4) of the FCBUFFER-encoded packed transaction

§block_num: u64

Reference to the block number in which this transaction was executed.

§index: u64

Index within block’s unfiltered execution traces

§block_time: Option<Timestamp>

Reference to the block time this transaction was executed in

§producer_block_id: String

Reference to the block ID this transaction was executed in

§receipt: Option<TransactionReceiptHeader>

Receipt of execution of this transaction

§elapsed: i64§net_usage: u64§scheduled: bool

Whether this transaction was taken from a scheduled transactions pool for execution (delayed)

§action_traces: Vec<ActionTrace>

Traces of each action within the transaction, including all notified and nested actions.

§failed_dtrx_trace: Option<Box<TransactionTrace>>

Trace of a failed deferred transaction, if any.

§exception: Option<Exception>

Exception leading to the failed dtrx trace.

§error_code: u64§db_ops: Vec<DbOp>

List of database operations this transaction entailed

§kv_ops: Vec<KvOp>

List of KV operations this transaction entailed

This was added in EOSIO 2.1.x and will not be populated on older versions.

See https://github.com/EOSIO/eos/pull/8223

§dtrx_ops: Vec<DTrxOp>

List of deferred transactions operations this transaction entailed

§feature_ops: Vec<FeatureOp>

List of feature switching operations (changes to feature switches in nodeos) this transaction entailed

§perm_ops: Vec<PermOp>

List of permission changes operations

§ram_ops: Vec<RamOp>

List of RAM consumption/redemption

§ram_correction_ops: Vec<RamCorrectionOp>

List of RAM correction operations (happens only once upon feature activation)

§rlimit_ops: Vec<RlimitOp>

List of changes to rate limiting values

§table_ops: Vec<TableOp>

List of table creations/deletions

§creation_tree: Vec<CreationFlatNode>

Tree of creation, rather than execution

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Returns the “default value” for a type. Read more
Returns the encoded length of the message without a length delimiter.
Clears the message, resetting all fields to their default.
Encodes the message to a buffer. Read more
Encodes the message to a newly allocated buffer.
Encodes the message with a length-delimiter to a buffer. Read more
Encodes the message with a length-delimiter to a newly allocated buffer.
Decodes an instance of the message from a buffer. Read more
Decodes a length-delimited instance of the message from the buffer.
Decodes an instance of the message from a buffer, and merges it into self. Read more
Decodes a length-delimited instance of the message from buffer, and merges it into self.
This method tests for self and other values to be equal, and is used by ==.
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self
The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.