loom_node_debug_providerTrait DebugProviderExt
Source pub trait DebugProviderExt<T = BoxTransport, N = Ethereum> {
// Required methods
fn geth_debug_trace_call<'life0, 'async_trait>(
&'life0 self,
tx: TransactionRequest,
block: BlockId,
trace_options: GethDebugTracingCallOptions,
) -> Pin<Box<dyn Future<Output = TransportResult<GethTrace>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn geth_debug_trace_block_by_number<'life0, 'async_trait>(
&'life0 self,
block: BlockNumberOrTag,
trace_options: GethDebugTracingOptions,
) -> Pin<Box<dyn Future<Output = TransportResult<Vec<TraceResult>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn geth_debug_trace_block_by_hash<'life0, 'async_trait>(
&'life0 self,
block: BlockHash,
trace_options: GethDebugTracingOptions,
) -> Pin<Box<dyn Future<Output = TransportResult<Vec<TraceResult>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}