pub struct TraceFields {Show 25 fields
pub from: bool,
pub to: bool,
pub call_type: bool,
pub gas: bool,
pub input: bool,
pub init: bool,
pub value: bool,
pub author: bool,
pub reward_type: bool,
pub block_hash: bool,
pub block_number: bool,
pub address: bool,
pub code: bool,
pub gas_used: bool,
pub output: bool,
pub subtraces: bool,
pub trace_address: bool,
pub transaction_hash: bool,
pub transaction_position: bool,
pub type_: bool,
pub error: bool,
pub sighash: bool,
pub action_address: bool,
pub balance: bool,
pub refund_address: bool,
}Expand description
Boolean flags selecting which trace columns to include in the output.
When all flags are false (the default), the full schema is returned.
Fields§
§from: bool§to: bool§call_type: bool§gas: bool§input: bool§init: bool§value: bool§reward_type: bool§block_hash: bool§block_number: bool§address: bool§code: bool§gas_used: bool§output: bool§subtraces: bool§trace_address: bool§transaction_hash: bool§transaction_position: bool§type_: bool§error: bool§sighash: bool§action_address: bool§balance: bool§refund_address: boolTrait Implementations§
Source§impl Clone for TraceFields
impl Clone for TraceFields
Source§fn clone(&self) -> TraceFields
fn clone(&self) -> TraceFields
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TraceFields
impl Debug for TraceFields
Source§impl Default for TraceFields
impl Default for TraceFields
Source§fn default() -> TraceFields
fn default() -> TraceFields
Returns the “default value” for a type. Read more
impl Copy for TraceFields
Auto Trait Implementations§
impl Freeze for TraceFields
impl RefUnwindSafe for TraceFields
impl Send for TraceFields
impl Sync for TraceFields
impl Unpin for TraceFields
impl UnwindSafe for TraceFields
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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