VecZnxIdftApply

Trait VecZnxIdftApply 

Source
pub trait VecZnxIdftApply<B: Backend> {
    // Required method
    fn vec_znx_idft_apply<R, A>(
        &self,
        res: &mut R,
        res_col: usize,
        a: &A,
        a_col: usize,
        scratch: &mut Scratch<B>,
    )
       where R: VecZnxBigToMut<B>,
             A: VecZnxDftToRef<B>;
}

Required Methods§

Source

fn vec_znx_idft_apply<R, A>( &self, res: &mut R, res_col: usize, a: &A, a_col: usize, scratch: &mut Scratch<B>, )
where R: VecZnxBigToMut<B>, A: VecZnxDftToRef<B>,

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.

Implementors§