pub trait GGLWENoise<BE: Backend> {
// Required method
fn gglwe_assert_noise<R, S, P>(
&self,
res: &R,
sk_prepared: &S,
pt_want: &P,
max_noise: f64,
)
where R: GGLWEToRef,
S: GLWESecretPreparedToRef<BE>,
P: ScalarZnxToRef,
Scratch<BE>: ScratchTakeBasic;
}Required Methods§
fn gglwe_assert_noise<R, S, P>(
&self,
res: &R,
sk_prepared: &S,
pt_want: &P,
max_noise: f64,
)where
R: GGLWEToRef,
S: GLWESecretPreparedToRef<BE>,
P: ScalarZnxToRef,
Scratch<BE>: ScratchTakeBasic,
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.