pub trait MatVec<T, D0: Dim, D1: Dim> {
// Required method
fn matvec<'a, La, Lx>(
&self,
a: &'a Slice<T, (D0, D1), La>,
x: &'a Slice<T, (D1,), Lx>,
) -> impl MatVecBuilder<'a, T, La, Lx, D0, D1>
where La: Layout,
Lx: Layout;
}Expand description
Matrix-vector multiplication and transformations
Required Methods§
fn matvec<'a, La, Lx>( &self, a: &'a Slice<T, (D0, D1), La>, x: &'a Slice<T, (D1,), Lx>, ) -> impl MatVecBuilder<'a, T, La, Lx, D0, D1>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".