type ExecResult = Result<ExecutionResult<HaltReason>, EVMError<EvmDatabaseError<Infallible>, InvalidTransaction>>;Aliased Type§
enum ExecResult {
Ok(ExecutionResult),
Err(EVMError<EvmDatabaseError<Infallible>>),
}Variants§
Ok(ExecutionResult)
Contains the success value
Err(EVMError<EvmDatabaseError<Infallible>>)
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.