ViewMatrixMut

Trait ViewMatrixMut 

Source
pub trait ViewMatrixMut {
    // Required method
    fn view_matrix_mut<const R: usize, const C: usize>(
        &mut self,
        element_offset: usize,
    ) -> MatrixViewMut<'_, R, C>;
}

Required Methods§

Source

fn view_matrix_mut<const R: usize, const C: usize>( &mut self, element_offset: usize, ) -> MatrixViewMut<'_, R, C>

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.

Implementations on Foreign Types§

Source§

impl ViewMatrixMut for Vec<Real>

Source§

fn view_matrix_mut<const R: usize, const C: usize>( &mut self, element_offset: usize, ) -> MatrixViewMut<'_, R, C>

Source§

impl ViewMatrixMut for [Real]

Source§

fn view_matrix_mut<const R: usize, const C: usize>( &mut self, element_offset: usize, ) -> MatrixViewMut<'_, R, C>

Implementors§