pub trait IndexAxisMutDyn<I: IndexAxisTrait>: ToViewMutMatrix {
    type Output<'a>: MatrixBase<Dim = DimDyn, Item = Self::Item> + ViewMutMatix
       where Self: 'a;

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

Required Associated Types§

source

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

Required Methods§

source

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

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<I: IndexAxisTrait, M: ToViewMutMemory, D: DimTrait> IndexAxisMutDyn<I> for Matrix<M, D>

§

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