pub trait MatVec<T> {
// Required method
fn matvec<'a, La, Lx>(
&self,
a: &'a DSlice<T, 2, La>,
x: &'a DSlice<T, 1, Lx>,
) -> impl MatVecBuilder<'a, T, La, Lx>
where La: Layout,
Lx: Layout;
}Expand description
Matrix-vector multiplication and transformations
Required Methods§
fn matvec<'a, La, Lx>( &self, a: &'a DSlice<T, 2, La>, x: &'a DSlice<T, 1, Lx>, ) -> impl MatVecBuilder<'a, T, La, Lx>
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.