VecZnxCopy

Trait VecZnxCopy 

Source
pub trait VecZnxCopy {
    // Required method
    fn vec_znx_copy<R, A>(
        &self,
        res: &mut R,
        res_col: usize,
        a: &A,
        a_col: usize,
    )
       where R: VecZnxToMut,
             A: VecZnxToRef;
}

Required Methods§

Source

fn vec_znx_copy<R, A>(&self, res: &mut R, res_col: usize, a: &A, a_col: usize)
where R: VecZnxToMut, 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§

Source§

impl<B> VecZnxCopy for Module<B>
where B: Backend + VecZnxCopyImpl<B>,