Trait usvg_tree::FuzzyEq

source ·
pub trait FuzzyEq<Rhs: ?Sized = Self> {
    // Required method
    fn fuzzy_eq(&self, other: &Rhs) -> bool;

    // Provided method
    fn fuzzy_ne(&self, other: &Rhs) -> bool { ... }
}
Expand description

A trait for fuzzy/approximate equality comparisons of float numbers.

Required Methods§

source

fn fuzzy_eq(&self, other: &Rhs) -> bool

Returns true if values are approximately equal.

Provided Methods§

source

fn fuzzy_ne(&self, other: &Rhs) -> bool

Returns true if values are not approximately equal.

Implementations on Foreign Types§

source§

impl FuzzyEq<f32> for f32

source§

fn fuzzy_eq(&self, other: &f32) -> bool

source§

impl<T: FuzzyEq> FuzzyEq<Vec<T, Global>> for Vec<T>

source§

fn fuzzy_eq(&self, other: &Self) -> bool

source§

impl FuzzyEq<f64> for f64

source§

fn fuzzy_eq(&self, other: &f64) -> bool

Implementors§