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