pub trait Scalar: Scalar + Entity + ComplexField + SimpleEntity + RealField + From<f64> + Display + SimdRealField + ComplexField + Copy + ClosedSub + From<f64> + ClosedMul + ClosedDiv + ClosedAdd + Signed + Into<f64> + PartialOrd + Pow<Self, Output = Self> + Pow<i32, Output = Self> {
const EPSILON: Self;
const INFINITY: Self;
const NAN: Self;
// Required method
fn is_nan(self) -> bool;
}
Required Associated Constants§
Required Methods§
Object Safety§
This trait is not object safe.