pub struct TraceCallRequest {
pub call: TransactionRequest,
pub trace_types: HashSet<TraceType>,
pub block_id: Option<BlockId>,
pub state_overrides: Option<StateOverride>,
pub block_overrides: Option<Box<BlockOverrides>>,
}
Expand description
Container type for trace_call
arguments
Fields§
§call: TransactionRequest
call request object
trace_types: HashSet<TraceType>
trace types
block_id: Option<BlockId>
Optional: blockId
state_overrides: Option<StateOverride>
Optional: StateOverride
block_overrides: Option<Box<BlockOverrides>>
Optional: BlockOverrides
Implementations§
Source§impl TraceCallRequest
impl TraceCallRequest
Sourcepub fn new(call: TransactionRequest) -> Self
pub fn new(call: TransactionRequest) -> Self
Returns a new TraceCallRequest
given a TransactionRequest
and HashSet<TraceType>
Sourcepub const fn with_block_id(self, block_id: BlockId) -> Self
pub const fn with_block_id(self, block_id: BlockId) -> Self
Sets the BlockId
Note: this is optional
Sourcepub fn with_state_override(self, state_overrides: StateOverride) -> Self
pub fn with_state_override(self, state_overrides: StateOverride) -> Self
Sets the StateOverride
Note: this is optional
Sourcepub fn with_block_overrides(self, block_overrides: Box<BlockOverrides>) -> Self
pub fn with_block_overrides(self, block_overrides: Box<BlockOverrides>) -> Self
Sets the BlockOverrides
Note: this is optional
Sourcepub fn with_trace_type(self, trace_type: TraceType) -> Self
pub fn with_trace_type(self, trace_type: TraceType) -> Self
Inserts a single trace type.
Sourcepub fn with_trace_types<I: IntoIterator<Item = TraceType>>(
self,
trace_types: I,
) -> Self
pub fn with_trace_types<I: IntoIterator<Item = TraceType>>( self, trace_types: I, ) -> Self
Inserts multiple trace types from an iterator.
Sourcepub fn with_trace(self) -> Self
pub fn with_trace(self) -> Self
Inserts TraceType::Trace
Sourcepub fn with_vm_trace(self) -> Self
pub fn with_vm_trace(self) -> Self
Inserts TraceType::VmTrace
Sourcepub fn with_statediff(self) -> Self
pub fn with_statediff(self) -> Self
Inserts TraceType::StateDiff
Trait Implementations§
Source§impl Debug for TraceCallRequest
impl Debug for TraceCallRequest
Source§impl Default for TraceCallRequest
impl Default for TraceCallRequest
Source§fn default() -> TraceCallRequest
fn default() -> TraceCallRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TraceCallRequest
impl<'de> Deserialize<'de> for TraceCallRequest
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
Auto Trait Implementations§
impl !Freeze for TraceCallRequest
impl RefUnwindSafe for TraceCallRequest
impl Send for TraceCallRequest
impl Sync for TraceCallRequest
impl Unpin for TraceCallRequest
impl UnwindSafe for TraceCallRequest
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> 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