Coeff

Trait Coeff 

Source
pub trait Coeff:
    Sized
    + Add<Output = Self>
    + AddAssign
    + Sub<Output = Self>
    + Mul<Output = Self>
    + Neg<Output = Self>
    + Hash
    + Eq
    + PartialOrd
    + Copy
    + One
    + Zero
    + Signed
    + Display { }

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> Coeff for T
where T: Sized + Add<Output = Self> + AddAssign + Sub<Output = Self> + Mul<Output = Self> + Neg<Output = Self> + Hash + Eq + PartialOrd + Copy + One + Zero + Signed + Display,