pub trait Row {
type Output;
// Required method
fn get_row(&self, row: usize) -> Self::Output;
}Expand description
This type abstracts a matrix where you can get a copy of a row
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".