Trait SplineNum

Source
pub trait SplineNum:
    Debug
    + Num
    + Copy
    + PartialOrd
    + Sub
    + SubAssign
    + Neg<Output = Self>
    + NumCast
    + Add
    + Pow<Self, Output = Self>
    + ScalarOperand
    + Euclid
    + Send { }
Expand description

Marker trait that is implemented for anything that satisfies the trait bounds required to be used as an element in the CubicSpline strategy.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<T> SplineNum for T
where T: Debug + Num + Copy + PartialOrd + Sub + SubAssign + Neg<Output = T> + NumCast + Add + Pow<Self, Output = Self> + ScalarOperand + Euclid + Send,