pub trait Approx {
    type Approximation;

    fn approx(&self, tolerance: Tolerance) -> Self::Approximation;
}
Expand description

Approximate an object

Required Associated Types

The approximation of the object

Required Methods

Approximate the object

tolerance defines how far the approximation is allowed to deviate from the actual object.

Implementors