DebugTraceBlockResult

Type Alias DebugTraceBlockResult 

Source
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§

§1.0.0

Ok((Vec<TraceResult<GethTrace, String>>, BlockId))

Contains the success value

§1.0.0

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.