Module error

Source
Expand description

The types of errors that might occur throughout constraint checking.

Structs§

ConstraintErrors
The index of each failed constraint alongside the error it produced.
ConstraintsUnsatisfied
The index of each constraint that was not satisfied.

Enums§

AccessError
Access operation error.
AluError
ALU operation error.
CheckError
Predicate checking error.
ConstraintError
Constraint checking error.
CryptoError
Crypto operation error.
DecodeError
Decode error.
EncodeError
Encode error.
LenWordsError
A len words error.
MissingAccessArgError
Missing argument error.
OpError
An individual operation failed during constraint checking error.
RepeatError
Repeat operation error.
StackError
Stack operation error.
TemporaryError
Temporary operation error.
TotalControlFlowError
Total control flow operation error.

Type Aliases§

CheckResult
Shorthand for a Result where the error type is a CheckError.
ConstraintResult
Shorthand for a Result where the error type is a ConstraintError.
OpResult
Shorthand for a Result where the error type is an OpError.
RepeatResult
Shorthand for a Result where the error type is a RepeatError.
StackResult
Shorthand for a Result where the error type is a StackError.
TemporaryResult
Shorthand for a Result where the error type is a TemporaryError.
TotalControlFlowResult
Shorthand for a Result where the error type is a TotalControlFlowError.