GLWENormalize

Trait GLWENormalize 

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

Source

fn glwe_normalize<R, A>(&self, res: &mut R, a: &A, scratch: &mut Scratch<BE>)
where R: GLWEToMut, A: GLWEToRef, Scratch<BE>: ScratchTakeCore<BE>,

Source

fn glwe_normalize_inplace<R>(&self, res: &mut R, scratch: &mut Scratch<BE>)
where R: GLWEToMut, Scratch<BE>: ScratchTakeCore<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.

Implementations on Foreign Types§

Source§

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

Implementors§