TracesBuilder

Struct TracesBuilder 

Source
pub struct TracesBuilder {
Show 25 fields pub from: BinaryBuilder, pub to: BinaryBuilder, pub call_type: StringBuilder, pub gas: Decimal256Builder, pub input: BinaryBuilder, pub init: BinaryBuilder, pub value: Decimal256Builder, pub author: BinaryBuilder, pub reward_type: StringBuilder, pub block_hash: BinaryBuilder, pub block_number: UInt64Builder, pub address: BinaryBuilder, pub code: BinaryBuilder, pub gas_used: Decimal256Builder, pub output: BinaryBuilder, pub subtraces: UInt64Builder, pub trace_address: ListBuilder<UInt64Builder>, pub transaction_hash: BinaryBuilder, pub transaction_position: UInt64Builder, pub type_: StringBuilder, pub error: StringBuilder, pub sighash: BinaryBuilder, pub action_address: BinaryBuilder, pub balance: Decimal256Builder, pub refund_address: BinaryBuilder,
}

Fields§

§from: BinaryBuilder§to: BinaryBuilder§call_type: StringBuilder§gas: Decimal256Builder§input: BinaryBuilder§init: BinaryBuilder§value: Decimal256Builder§author: BinaryBuilder§reward_type: StringBuilder§block_hash: BinaryBuilder§block_number: UInt64Builder§address: BinaryBuilder§code: BinaryBuilder§gas_used: Decimal256Builder§output: BinaryBuilder§subtraces: UInt64Builder§trace_address: ListBuilder<UInt64Builder>§transaction_hash: BinaryBuilder§transaction_position: UInt64Builder§type_: StringBuilder§error: StringBuilder§sighash: BinaryBuilder§action_address: BinaryBuilder§balance: Decimal256Builder§refund_address: BinaryBuilder

Implementations§

Trait Implementations§

Source§

impl Default for TracesBuilder

Source§

fn default() -> TracesBuilder

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

Auto Trait Implementations§

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> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

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, 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<T> Allocation for T
where T: RefUnwindSafe + Send + Sync,