pub trait MatrixSliceMutDyn: ToViewMutMatrix {
    type Output<'a>: MatrixBase<Dim = DimDyn> + ViewMutMatix
       where Self: 'a;

    // Required method
    fn slice_mut_dyn(&mut self, index: Slice) -> Self::Output<'_>;
}

Required Associated Types§

source

type Output<'a>: MatrixBase<Dim = DimDyn> + ViewMutMatix where Self: 'a

Required Methods§

source

fn slice_mut_dyn(&mut self, index: Slice) -> Self::Output<'_>

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T, M, D> MatrixSliceMutDyn for Matrix<M, D>
where T: Num, M: Memory<Item = T> + ToViewMutMemory, D: DimTrait,

§

type Output<'a> = Matrix<ViewMutMem<'a, <Matrix<M, D> as MatrixBase>::Item>, DimDyn> where Self: 'a