pub trait ToViewMutMatrix: MatrixBase {
    type ViewMut<'a>: ViewMutMatix
       where Self: 'a;

    // Required method
    fn to_view_mut(&mut self) -> Self::ViewMut<'_>;
}

Required Associated Types§

source

type ViewMut<'a>: ViewMutMatix where Self: 'a

Required Methods§

source

fn to_view_mut(&mut self) -> Self::ViewMut<'_>

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<M: ToViewMutMemory, S: DimTrait> ToViewMutMatrix for Matrix<M, S>

§

type ViewMut<'a> = Matrix<<M as ToViewMutMemory>::ViewMut<'a>, S> where Self: 'a