pub trait GGSWExpandRows<BE: Backend> {
// Required 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: GGLWEToGGSWKeyPreparedToRef<BE>,
Scratch<BE>: ScratchTakeCore<BE>;
}Required 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.