pub trait MatrixMul<Lhs, Rhs>: ViewMutMatix {
    // Required method
    fn mul(self, lhs: Lhs, rhs: Rhs);
}

Required Methods§

source

fn mul(self, lhs: Lhs, rhs: Rhs)

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<'a, 'b, 'c, T, DS, DR> MatrixMul<Matrix<ViewMem<'a, T>, DS>, Matrix<ViewMem<'b, T>, DR>> for Matrix<ViewMutMem<'c, T>, DS>
where T: Num, DS: DimTrait, DR: DimTrait,

source§

impl<T, RM, SM, D> MatrixMul<Matrix<RM, D>, T> for Matrix<SM, D>
where T: Num, RM: View<Item = T>, SM: ViewMut<Item = T>, D: DimTrait,