pub type Matrix<T> = Vec<Vec<T>>;
Simple definition of a matrix from a single data type.
pub struct Matrix<T> { /* private fields */ }