pub trait GGSWExpandRows<BE: Backend>where
Self: Sized + ModuleN + VecZnxDftBytesOf + VmpApplyDftToDftTmpBytes + VecZnxBigBytesOf + VecZnxNormalizeTmpBytes + VecZnxDftApply<BE> + VecZnxDftCopy<BE> + VmpApplyDftToDft<BE> + VmpApplyDftToDftAdd<BE> + VecZnxDftAddInplace<BE> + VecZnxBigNormalize<BE> + VecZnxIdftApplyTmpA<BE> + VecZnxNormalize<BE>,{
// Provided methods
fn ggsw_expand_rows_tmp_bytes<R, A>(
&self,
res_infos: &R,
tsk_infos: &A,
) -> usize
where R: GGSWInfos,
A: GGLWEInfos { ... }
fn ggsw_expand_row<R, T>(
&self,
res: &mut R,
tsk: &T,
scratch: &mut Scratch<BE>,
)
where R: GGSWToMut,
T: GLWETensorKeyPreparedToRef<BE>,
Scratch<BE>: ScratchTakeCore<BE> { ... }
}Provided Methods§
fn ggsw_expand_rows_tmp_bytes<R, A>(
&self,
res_infos: &R,
tsk_infos: &A,
) -> usizewhere
R: GGSWInfos,
A: GGLWEInfos,
fn ggsw_expand_row<R, T>(&self, res: &mut R, tsk: &T, scratch: &mut Scratch<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.