pub trait ArithmeticOverflow: Sized {
// Required method
fn arithmetic_overflow(field: &'static str) -> Self;
}Expand description
Domain error adapter for planner-specific arithmetic overflow fields.
Required Methods§
Sourcefn arithmetic_overflow(field: &'static str) -> Self
fn arithmetic_overflow(field: &'static str) -> Self
Build the planner-specific overflow error for field.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".