pub trait ValidationHandler {
// Required method
fn validate_value(&self, value: DynSolValue) -> Result<DynSolValue>;
}Expand description
Handler trait for final expression validation.
Validates and potentially transforms the final result of expression evaluation. Used to enforce constraints or convert placeholder values to concrete values.