1 2 3 4 5 6 7 8 9 10 11
mod mat_impl; mod mat_mul; mod mat_display; #[derive(Debug, Clone)] pub struct Matrix<T> { width: usize, height: usize, size: usize, data: Vec<T> }