pub trait GLWENormalize<BE: Backend>{
// Provided methods
fn glwe_normalize<R, A>(
&self,
res: &mut R,
a: &A,
scratch: &mut Scratch<BE>,
)
where R: GLWEToMut,
A: GLWEToRef,
Scratch<BE>: ScratchTakeCore<BE> { ... }
fn glwe_normalize_inplace<R>(&self, res: &mut R, scratch: &mut Scratch<BE>)
where R: GLWEToMut,
Scratch<BE>: ScratchTakeCore<BE> { ... }
}Provided Methods§
fn glwe_normalize<R, A>(&self, res: &mut R, a: &A, scratch: &mut Scratch<BE>)
fn glwe_normalize_inplace<R>(&self, res: &mut R, scratch: &mut Scratch<BE>)
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.