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