pub struct AbsDiff<A, B = A>{
pub epsilon: <A as AbsDiffEq<B>>::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 as AbsDiffEq<B>>::EpsilonThe tolerance to use when testing values that are close together.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<A, B> Freeze for AbsDiff<A, B>
impl<A, B> RefUnwindSafe for AbsDiff<A, B>
impl<A, B> Send for AbsDiff<A, B>
impl<A, B> Sync for AbsDiff<A, B>
impl<A, B> Unpin for AbsDiff<A, B>
impl<A, B> UnwindSafe for AbsDiff<A, B>
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more