pub trait DenseAccess<T>: Matrix<T> {
// Required method
fn fetch_single(&self, row: usize, col: usize) -> T;
}Expand description
Access to a dense matrix.
Required Methods§
fn fetch_single(&self, row: usize, col: usize) -> T
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".