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

Required Methods§

source

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

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<'a, 'b, 'c, T, D1, D2, D3> MatrixSub<Matrix<ViewMem<'a, T>, D1>, Matrix<ViewMem<'b, T>, D2>> for Matrix<ViewMutMem<'c, T>, D3>
where D1: DimTrait, D2: DimTrait, D3: DimTrait, T: Num,

source§

impl<'a, 'b, T, D1, D2> MatrixSub<Matrix<ViewMem<'a, T>, D1>, T> for Matrix<ViewMutMem<'b, T>, D2>
where D1: DimTrait, D2: DimTrait, T: Num,