pub struct ActionTrace {
Show 21 fields pub receiver: String, pub receipt: Option<ActionReceipt>, pub action: Option<Action>, pub context_free: bool, pub elapsed: i64, pub console: String, pub transaction_id: String, pub block_num: u64, pub producer_block_id: String, pub block_time: Option<Timestamp>, pub account_ram_deltas: Vec<AccountRamDelta>, pub raw_return_value: Vec<u8>, pub json_return_value: String, pub exception: Option<Exception>, pub error_code: u64, pub action_ordinal: u32, pub creator_action_ordinal: u32, pub closest_unnotified_ancestor_action_ordinal: u32, pub execution_index: u32, pub filtering_matched: bool, pub filtering_matched_system_action_filter: bool,
}

Fields§

§receiver: String§receipt: Option<ActionReceipt>§action: Option<Action>§context_free: bool§elapsed: i64§console: String§transaction_id: String§block_num: u64§producer_block_id: String§block_time: Option<Timestamp>§account_ram_deltas: Vec<AccountRamDelta>§raw_return_value: Vec<u8>

ReturnValue has been added in EOSIO 2.1.x as something that can be returned from the execution of an action.

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

§json_return_value: String§exception: Option<Exception>§error_code: u64§action_ordinal: u32§creator_action_ordinal: u32§closest_unnotified_ancestor_action_ordinal: u32§execution_index: u32§filtering_matched: bool

Whether this action trace was a successful match, present only when filtering was applied on block. This will be true if the Block filtering_applied is true, if the include CEL filter matched and if the exclude CEL filter did NOT match.

§filtering_matched_system_action_filter: bool

Whether this action trace was a successful system match, present only when filtering was applied on block. This will be true if the Block filtering_applied is true, if the system actions include CEL filter matched, supersedes any exclude CEL filter.

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.

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.