Trait matrix_basic::ToMatrix
source · pub trait ToMatrix: Mul<Output = Self> + Add<Output = Self> + Sub<Output = Self> + Zero<Output = Self> + Neg<Output = Self> + Copy { }
Expand description
Trait a type must satisfy to be element of a matrix. This is mostly to reduce writing trait bounds afterwards.