pub type TraceBlockResult = Result<(Vec<LocalizedTransactionTrace>, BlockId), (Error, BlockId)>;
Expand description
A result type for the trace_block
method that also captures the requested block.
Aliased Type§
pub enum TraceBlockResult {
Ok((Vec<LocalizedTransactionTrace>, BlockId)),
Err((Error, BlockId)),
}
Variants§
Ok((Vec<LocalizedTransactionTrace>, 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.