pub trait VecZnxNormalizeInplace<B: Backend> {
// Required method
fn vec_znx_normalize_inplace<A>(
&self,
base2k: usize,
a: &mut A,
a_col: usize,
scratch: &mut Scratch<B>,
)
where A: VecZnxToMut;
}Required Methods§
Sourcefn vec_znx_normalize_inplace<A>(
&self,
base2k: usize,
a: &mut A,
a_col: usize,
scratch: &mut Scratch<B>,
)where
A: VecZnxToMut,
fn vec_znx_normalize_inplace<A>(
&self,
base2k: usize,
a: &mut A,
a_col: usize,
scratch: &mut Scratch<B>,
)where
A: VecZnxToMut,
Normalizes the selected column of a.
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.