Trait partiql_eval::eval::EvalContext
source · pub trait EvalContext {
// Required methods
fn bindings(&self) -> &dyn Bindings<Value>;
fn add_error(&self, error: EvaluationError);
fn has_errors(&self) -> bool;
fn errors(&self) -> Vec<EvaluationError>;
}
Expand description
Represents an evaluation context that is used during evaluation of a plan.