pub trait GenericMatrixMut: GenericMatrix {
    // Required method
    fn as_mut(
        this: &mut Matrix<Self>
    ) -> <Self::Kind as MatrixKind>::Mut<'_, Self::Elem>;
}

Required Methods§

source

fn as_mut( this: &mut Matrix<Self> ) -> <Self::Kind as MatrixKind>::Mut<'_, Self::Elem>

Object Safety§

This trait is not object safe.

Implementors§