Trait maplibre::util::SignificantlyDifferent

source ·
pub trait SignificantlyDifferent<Rhs: ?Sized = Self> {
    type Epsilon;

    // Required method
    fn ne(&self, other: &Rhs, epsilon: Self::Epsilon) -> bool;
}

Required Associated Types§

Required Methods§

source

fn ne(&self, other: &Rhs, epsilon: Self::Epsilon) -> bool

This method tests for self and other values to be significantly different

Implementors§