pub trait MatrixOps<T> {
// Required methods
fn matmul(&self, other: &Matrix<T>) -> Result<Matrix<T>, String>;
fn transpose(&self) -> Matrix<T>;
}Expand description
Matrix operations (rank 2 specific)
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".