Expand description
The requisite parameters for testing for approximate equality using a
absolute difference based comparison.
This is not normally used directly, rather via the
assert_abs_diff_{eq|ne}!
and abs_diff_{eq|ne}!
macros.
use std::f64;
use approx::AbsDiff;
AbsDiff::default().eq(&1.0, &1.0);
AbsDiff::default().epsilon(f64::EPSILON).eq(&1.0, &1.0);
The tolerance to use when testing values that are close together.
Replace the epsilon value with the one specified.
Peform the equality comparison
Peform the inequality comparison
Returns the “default value” for a type.
Read more
Immutably borrows from an owned value.
Read more
Mutably borrows from an owned value.
Read more
Returns the argument unchanged.
Calls U::from(self)
.
That is, this conversion is whatever the implementation of
From<T> for U
chooses to do.
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.