Trait KDT

Source
pub trait KDT:
    PartialEq
    + PartialOrd
    + Copy
    + Mul
    + Sub
    + Add
    + Into<f64> { }

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> KDT for T
where T: PartialEq + PartialOrd + Copy + Mul<Output = T> + Sub<Output = T> + Add<Output = T> + Into<f64>,