pub trait AsRefMatrixParts<T: MatrixScalar, const C: usize, const R: usize> {
// Required method
fn as_ref_parts(&self) -> &[[T; R]; C];
}Expand description
Enables reading from the matrix (via &[[T; R]; C])
Required Methods§
fn as_ref_parts(&self) -> &[[T; R]; C]
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".