pub struct GethDebugTracingCallOptions {
pub tracing_options: GethDebugTracingOptions,
pub state_overrides: Option<StateOverride>,
pub block_overrides: Option<BlockOverrides>,
}
Expand description
Bindings for additional debug_traceCall
options
See https://geth.ethereum.org/docs/rpc/ns-debug#debug_tracecall
Fields§
§tracing_options: GethDebugTracingOptions
All the options
state_overrides: Option<StateOverride>
The state overrides to apply
block_overrides: Option<BlockOverrides>
The block overrides to apply
Implementations§
source§impl GethDebugTracingCallOptions
impl GethDebugTracingCallOptions
sourcepub fn with_state_overrides(self, overrides: StateOverride) -> Self
pub fn with_state_overrides(self, overrides: StateOverride) -> Self
Enables state overrides
sourcepub fn with_block_overrides(self, overrides: BlockOverrides) -> Self
pub fn with_block_overrides(self, overrides: BlockOverrides) -> Self
Enables block overrides
sourcepub fn with_tracing_options(self, options: GethDebugTracingOptions) -> Self
pub fn with_tracing_options(self, options: GethDebugTracingOptions) -> Self
Sets the tracing options
Trait Implementations§
source§impl Clone for GethDebugTracingCallOptions
impl Clone for GethDebugTracingCallOptions
source§fn clone(&self) -> GethDebugTracingCallOptions
fn clone(&self) -> GethDebugTracingCallOptions
Returns a copy 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 GethDebugTracingCallOptions
impl Debug for GethDebugTracingCallOptions
source§impl Default for GethDebugTracingCallOptions
impl Default for GethDebugTracingCallOptions
source§fn default() -> GethDebugTracingCallOptions
fn default() -> GethDebugTracingCallOptions
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for GethDebugTracingCallOptions
impl<'de> Deserialize<'de> for GethDebugTracingCallOptions
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for GethDebugTracingCallOptions
impl StructuralPartialEq for GethDebugTracingCallOptions
Auto Trait Implementations§
impl Freeze for GethDebugTracingCallOptions
impl RefUnwindSafe for GethDebugTracingCallOptions
impl Send for GethDebugTracingCallOptions
impl Sync for GethDebugTracingCallOptions
impl Unpin for GethDebugTracingCallOptions
impl UnwindSafe for GethDebugTracingCallOptions
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,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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