Trait GenericMatrixMut

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

Generic mutable matrix trait.

Required Methods§

Source

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

Returns a mutable over the matrix.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§