Trait symbolic_polynomials::Coefficient [] [src]

pub trait Coefficient: Integer + One + ToPrimitive + FromPrimitive + AddAssign<Self> + SubAssign<Self> + MulAssign<Self> + DivAssign<Self> + Neg<Output = Self> + Clone + Display + Debug { }

A trait specifying all the bounds a Coefficient type should meet.

See the module-level documentation for more.

Implementors