pub trait AssertFd<Rhs = Self> {
// Required method
fn eq_within_fd_tol(
tols: &Assert,
a: Self,
b: Rhs,
) -> Result<(), AssertionError>;
}Expand description
Finite-difference equality assertions, overloaded across owned and borrowed operands.
Required Methods§
fn eq_within_fd_tol( tols: &Assert, a: Self, b: Rhs, ) -> Result<(), AssertionError>
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.