pub trait VecZnxAddScalarInplace {
// Required method
fn vec_znx_add_scalar_inplace<R, A>(
&self,
res: &mut R,
res_col: usize,
res_limb: usize,
a: &A,
a_col: usize,
)
where R: VecZnxToMut,
A: ScalarZnxToRef;
}Required Methods§
Sourcefn vec_znx_add_scalar_inplace<R, A>(
&self,
res: &mut R,
res_col: usize,
res_limb: usize,
a: &A,
a_col: usize,
)where
R: VecZnxToMut,
A: ScalarZnxToRef,
fn vec_znx_add_scalar_inplace<R, A>(
&self,
res: &mut R,
res_col: usize,
res_limb: usize,
a: &A,
a_col: usize,
)where
R: VecZnxToMut,
A: ScalarZnxToRef,
Adds the selected column of a on the selected column and limb of res.
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.