[][src]Struct approx::AbsDiff

pub struct AbsDiff<A: ?Sized, B = A> where
    A: AbsDiffEq<B>,
    B: ?Sized
{ pub epsilon: A::Epsilon, }

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.

Methods

impl<A: ?Sized, B> AbsDiff<A, B> where
    A: AbsDiffEq<B>,
    B: ?Sized
[src]

pub fn epsilon(self, epsilon: A::Epsilon) -> AbsDiff<A, B>[src]

Replace the epsilon value with the one specified.

pub fn eq(self, lhs: &A, rhs: &B) -> bool[src]

Peform the equality comparison

pub fn ne(self, lhs: &A, rhs: &B) -> bool[src]

Peform the inequality comparison

Trait Implementations

impl<A: ?Sized, B> Default for AbsDiff<A, B> where
    A: AbsDiffEq<B>,
    B: ?Sized
[src]

Auto Trait Implementations

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

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.