pub trait EvalErrorReport:
Clone
+ Send
+ Sync {
// Required method
fn report(&self, error: ExprError);
}
Expand description
Report an error during evaluation.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementations on Foreign Types§
Source§impl EvalErrorReport for !
A dummy implementation that panics when called.
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.