Module errors

Module errors 

Source
Expand description

Error types for parsing, compilation and evaluation Error types for the evalexpr-jit crate.

This module defines the various error types that can occur during expression parsing, AST conversion, and JIT compilation. The main error types are:

  • ConvertError: Errors during conversion from evalexpr AST to internal representation
  • BuilderError: Errors during JIT compilation with Cranelift
  • EquationError: High-level errors when working with equations

Each error type implements the standard Error trait and provides detailed error messages.

Enumsยง

BuilderError
Errors that can occur during JIT compilation of expressions.
ConvertError
Errors that can occur during conversion from evalexpr AST to our internal AST representation.
EquationError
High-level errors that can occur when working with mathematical equations.