pub trait SvpApplyDft<B: Backend> {
// Required method
fn svp_apply_dft<R, A, C>(
&self,
res: &mut R,
res_col: usize,
a: &A,
a_col: usize,
b: &C,
b_col: usize,
)
where R: VecZnxDftToMut<B>,
A: SvpPPolToRef<B>,
C: VecZnxToRef;
}Expand description
Apply a scalar-vector product between a[a_col] and b[b_col] and stores the result on res[res_col].
Required Methods§
fn svp_apply_dft<R, A, C>( &self, res: &mut R, res_col: usize, a: &A, a_col: usize, b: &C, b_col: usize, )
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.