pub trait SquareMatrix: GeneralMatrix {
// Required method
fn identity() -> Self;
}Expand description
Matrices that have the same number of rows and columns.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.