pub trait VecZnxDftSub<B: Backend> {
// Required method
fn vec_znx_dft_sub<R, A, D>(
&self,
res: &mut R,
res_col: usize,
a: &A,
a_col: usize,
b: &D,
b_col: usize,
)
where R: VecZnxDftToMut<B>,
A: VecZnxDftToRef<B>,
D: VecZnxDftToRef<B>;
}Required Methods§
fn vec_znx_dft_sub<R, A, D>( &self, res: &mut R, res_col: usize, a: &A, a_col: usize, b: &D, b_col: usize, )
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.