Trait IndexableMatrix

Source
pub trait IndexableMatrix<Dtype>: IndexableTensor<Dtype> + MatrixTrait<Dtype>
where Dtype: Copy + Num,
{ // Provided method fn matmul<R>(&self, other: &R) -> Matrix<Dtype> where R: MatrixTrait<Dtype> + IndexableTensor<Dtype> { ... } }

Provided Methods§

Source

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.

Implementors§

Source§

impl<Dtype, T> IndexableMatrix<Dtype> for T
where Dtype: Copy + Num, T: MatrixTrait<Dtype> + IndexableTensor<Dtype>,