pub trait AsMatMut<E: Entity> {
// Required method
fn as_mat_mut(&mut self) -> MatMut<'_, E>;
}Expand description
Required Methods§
Sourcefn as_mat_mut(&mut self) -> MatMut<'_, E>
fn as_mat_mut(&mut self) -> MatMut<'_, E>
Convert to a mutable matrix view.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".