pub trait VecZnxFillNormal {
// Required method
fn vec_znx_fill_normal<R>(
&self,
base2k: usize,
res: &mut R,
res_col: usize,
k: usize,
source: &mut Source,
sigma: f64,
bound: f64,
)
where R: VecZnxToMut;
}Required Methods§
fn vec_znx_fill_normal<R>(
&self,
base2k: usize,
res: &mut R,
res_col: usize,
k: usize,
source: &mut Source,
sigma: f64,
bound: f64,
)where
R: VecZnxToMut,
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.