Trait usvg::FuzzyEq

source ·
pub trait FuzzyEq<Rhs = Self>where
    Rhs: ?Sized,
{ fn fuzzy_eq(&self, other: &Rhs) -> bool; fn fuzzy_ne(&self, other: &Rhs) -> bool { ... } }
Expand description

A trait for fuzzy/approximate equality comparisons.

Required Methods

Returns true if values are approximately equal.

Provided Methods

Returns true if values are not approximately equal.

Implementations on Foreign Types

Implementors