pub trait FiniteDifference {
// Required method
fn error_fd(
&self,
comparator: &Self,
epsilon: Scalar,
) -> Option<(bool, usize)>;
}Expand description
Types that can report a finite-difference comparison error against themselves.
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.