pub struct AbsDiff<A, B = A> where
A: AbsDiffEq<B> + ?Sized,
B: ?Sized, {
pub epsilon: A::Epsilon,
}
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.
Example
use std::f64;
use approx::AbsDiff;
AbsDiff::default().eq(&1.0, &1.0);
AbsDiff::default().epsilon(f64::EPSILON).eq(&1.0, &1.0);
Fields
epsilon: A::Epsilon
The tolerance to use when testing values that are close together.
Implementations
Trait Implementations
Auto Trait Implementations
impl<A: ?Sized, B: ?Sized> RefUnwindSafe for AbsDiff<A, B> where
<A as AbsDiffEq<B>>::Epsilon: RefUnwindSafe,
impl<A: ?Sized, B: ?Sized> Send for AbsDiff<A, B> where
<A as AbsDiffEq<B>>::Epsilon: Send,
impl<A: ?Sized, B: ?Sized> Sync for AbsDiff<A, B> where
<A as AbsDiffEq<B>>::Epsilon: Sync,
impl<A: ?Sized, B: ?Sized> Unpin for AbsDiff<A, B> where
<A as AbsDiffEq<B>>::Epsilon: Unpin,
impl<A: ?Sized, B: ?Sized> UnwindSafe for AbsDiff<A, B> where
<A as AbsDiffEq<B>>::Epsilon: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more