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§
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.