pub trait IndexableMatrix<Dtype>: IndexableTensor<Dtype> + MatrixTrait<Dtype>{
// Provided method
fn matmul<R>(&self, other: &R) -> Matrix<Dtype>
where R: MatrixTrait<Dtype> + IndexableTensor<Dtype> { ... }
}
Provided Methods§
fn matmul<R>(&self, other: &R) -> Matrix<Dtype>where
R: MatrixTrait<Dtype> + IndexableTensor<Dtype>,
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.