Trace

Struct Trace 

Source
pub struct Trace {
Show 25 fields pub from: Option<Address>, pub to: Option<Address>, pub call_type: Option<String>, pub gas: Option<Quantity>, pub input: Option<Data>, pub init: Option<Data>, pub value: Option<Quantity>, pub author: Option<Address>, pub reward_type: Option<String>, pub block_hash: Option<Hash>, pub block_number: Option<u64>, pub address: Option<Address>, pub code: Option<Data>, pub gas_used: Option<Quantity>, pub output: Option<Data>, pub subtraces: Option<u64>, pub trace_address: Option<Vec<u64>>, pub transaction_hash: Option<Hash>, pub transaction_position: Option<u64>, pub type_: Option<String>, pub error: Option<String>, pub sighash: Option<Data>, pub action_address: Option<Address>, pub balance: Option<Quantity>, pub refund_address: Option<Address>,
}
Expand description

Trace object

Fields§

§from: Option<Address>

The address of the sender who initiated the transaction.

§to: Option<Address>

The address of the recipient of the transaction if it was a transaction to an address. For contract creation transactions, this field is None.

§call_type: Option<String>

The type of trace, call or delegatecall, two ways to invoke a function in a smart contract.

call creates a new environment for the function to work in, so changes made in that function won’t affect the environment where the function was called.

delegatecall doesn’t create a new environment. Instead, it runs the function within the environment of the caller, so changes made in that function will affect the caller’s environment.

§gas: Option<Quantity>

The units of gas included in the transaction by the sender.

§input: Option<Data>

The optional input data sent with the transaction, usually used to interact with smart contracts.

§init: Option<Data>

The init code.

§value: Option<Quantity>

The value of the native token transferred along with the transaction, in Wei.

§author: Option<Address>

The address of the receiver for reward transaction.

§reward_type: Option<String>

Kind of reward. Block reward or Uncle reward.

§block_hash: Option<Hash>

The hash of the block in which the transaction was included.

§block_number: Option<u64>

The number of the block in which the transaction was included.

§address: Option<Address>

Destroyed address.

§code: Option<Data>

Contract code.

§gas_used: Option<Quantity>

The total used gas by the call, encoded as hexadecimal.

§output: Option<Data>

The return value of the call, encoded as a hexadecimal string.

§subtraces: Option<u64>

The number of sub-traces created during execution. When a transaction is executed on the EVM, it may trigger additional sub-executions, such as when a smart contract calls another smart contract or when an external account is accessed.

§trace_address: Option<Vec<u64>>

An array that indicates the position of the transaction in the trace.

§transaction_hash: Option<Hash>

The hash of the transaction.

§transaction_position: Option<u64>

The index of the transaction in the block.

§type_: Option<String>

The type of action taken by the transaction, call, create, reward and suicide.

call is the most common type of trace and occurs when a smart contract invokes another contract’s function.

create represents the creation of a new smart contract. This type of trace occurs when a smart contract is deployed to the blockchain.

§error: Option<String>

A string that indicates whether the transaction was successful or not.

None if successful, Reverted if not.

§sighash: Option<Data>

4-byte function signature hash for the trace

§action_address: Option<Address>

The action address for traces that create contracts

§balance: Option<Quantity>

The balance associated with the trace operation

§refund_address: Option<Address>

The refund address for refund operations

Implementations§

Source§

impl Trace

Source

pub fn from_arrow(batch: &RecordBatch) -> Result<Vec<Self>>

Convert an arrow RecordBatch into a vector of Trace structs

Trait Implementations§

Source§

impl Clone for Trace

Source§

fn clone(&self) -> Trace

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Trace

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for Trace

Source§

fn default() -> Trace

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for Trace

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl PartialEq for Trace

Source§

fn eq(&self, other: &Trace) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Serialize for Trace

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl TryFrom<TraceReader<'_>> for Trace

Source§

type Error = Error

The type returned in the event of a conversion error.
Source§

fn try_from(reader: TraceReader<'_>) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl Eq for Trace

Source§

impl StructuralPartialEq for Trace

Auto Trait Implementations§

§

impl Freeze for Trace

§

impl RefUnwindSafe for Trace

§

impl Send for Trace

§

impl Sync for Trace

§

impl Unpin for Trace

§

impl UnwindSafe for Trace

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DynClone for T
where T: Clone,

Source§

fn __clone_box(&self, _: Private) -> *mut ()

Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

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

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> Allocation for T
where T: RefUnwindSafe + Send + Sync,

Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,