pub type DebugTraceBlockResult = Result<(Vec<TraceResult<GethTrace, String>>, BlockId), (Error, BlockId)>;
Expand description
A result type for the debug_trace_block
method that also captures the requested block.
Aliased Type§
pub enum DebugTraceBlockResult {
Ok((Vec<TraceResult<GethTrace, String>>, BlockId)),
Err((Error, BlockId)),
}
Variants§
Ok((Vec<TraceResult<GethTrace, String>>, BlockId))
Contains the success value
Err((Error, BlockId))
Contains the error value
Layout§
Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.