Expand description
The types of errors that might occur throughout state read execution.
Structs§
- OutOf
GasError - The gas cost of performing an operation would exceed the gas limit.
Enums§
- Control
Flow Error - Errors occuring during
TotalControlFlowoperation. - OpAsync
Error - A synchronous operation failed.
- OpError
- An individual operation failed during state read execution.
- OpSync
Error - A synchronous operation failed.
- Stack
Error - Stack operation error.
- State
Memory Error - Errors occuring during
crate::StateMemoryoperation. - State
Read Error - State read execution failure.
Type Aliases§
- OpAsync
Result - Shorthand for a
Resultwhere the error type is anOpAsyncError. - OpResult
- Shorthand for a
Resultwhere the error type is anOpError. - OpSync
Result - Shorthand for a
Resultwhere the error type is anOpSyncError. - Stack
Result - Shorthand for a
Resultwhere the error type is aStackError. - State
Memory Result - Shorthand for a
Resultwhere the error type is aStateMemoryError. - State
Read Result - Shorthand for a
Resultwhere the error type is aStateReadError.