Module error

Source
Expand description

The types of errors that might occur throughout state read execution.

Structs§

OutOfGasError
The gas cost of performing an operation would exceed the gas limit.

Enums§

ControlFlowError
Errors occuring during TotalControlFlow operation.
OpAsyncError
A synchronous operation failed.
OpError
An individual operation failed during state read execution.
OpSyncError
A synchronous operation failed.
StackError
Stack operation error.
StateMemoryError
Errors occuring during crate::StateMemory operation.
StateReadError
State read execution failure.

Type Aliases§

OpAsyncResult
Shorthand for a Result where the error type is an OpAsyncError.
OpResult
Shorthand for a Result where the error type is an OpError.
OpSyncResult
Shorthand for a Result where the error type is an OpSyncError.
StackResult
Shorthand for a Result where the error type is a StackError.
StateMemoryResult
Shorthand for a Result where the error type is a StateMemoryError.
StateReadResult
Shorthand for a Result where the error type is a StateReadError.