Skip to main content

ExecResult

Type Alias ExecResult 

Source
type ExecResult = Result<ExecutionResult<HaltReason>, EVMError<EvmDatabaseError<Infallible>, InvalidTransaction>>;

Aliased Type§

enum ExecResult {
    Ok(ExecutionResult),
    Err(EVMError<EvmDatabaseError<Infallible>>),
}

Variants§

§1.0.0

Ok(ExecutionResult)

Contains the success value

§1.0.0

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.