Trait mtrx::MatrixCell[][src]

pub trait MatrixCell<T>: Add<Output = T> + Mul<Output = T> + AddAssign + SubAssign + Copy + From<i8> { }

The requirements for a type to be a Matrix Cell. Numeric types fulfill these requirements, and many of them can be derived as needed

Implementors

impl<T: Add<Output = T> + Mul<Output = T> + AddAssign + SubAssign + Copy + From<i8>> MatrixCell<T> for T[src]

Loading content...