pub trait EvalErrorReport:
Clone
+ Send
+ Sync {
// Required method
fn report(&self, error: ExprError);
}
Expand description
Report an error during evaluation.
Required Methods§
Object Safety§
This trait is not object safe.
Implementations on Foreign Types§
source§impl EvalErrorReport for !
impl EvalErrorReport for !
A dummy implementation that panics when called.
Used as the type parameter for the expression builder when non-strict evaluation is not required.