VecZnxDftApply

Trait VecZnxDftApply 

Source
pub trait VecZnxDftApply<B: Backend> {
    // Required method
    fn vec_znx_dft_apply<R, A>(
        &self,
        step: usize,
        offset: usize,
        res: &mut R,
        res_col: usize,
        a: &A,
        a_col: usize,
    )
       where R: VecZnxDftToMut<B>,
             A: VecZnxToRef;
}

Required Methods§

Source

fn vec_znx_dft_apply<R, A>( &self, step: usize, offset: usize, res: &mut R, res_col: usize, a: &A, a_col: usize, )
where R: VecZnxDftToMut<B>, A: VecZnxToRef,

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§