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