GGLWENoise

Trait GGLWENoise 

Source
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§

Source

fn gglwe_assert_noise<R, S, P>( &self, res: &R, sk_prepared: &S, pt_want: &P, max_noise: f64, )

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.

Implementations on Foreign Types§

Source§

impl<BE: Backend> GGLWENoise<BE> for Module<BE>

Source§

fn gglwe_assert_noise<R, S, P>( &self, res: &R, sk_prepared: &S, pt_want: &P, max_noise: f64, )

Implementors§