pub trait MatrixDimensions { // Required methods fn height(&self) -> usize; fn width(&self) -> usize; }