pub trait GLWEAutomorphismKeyAutomorphism<BE: Backend>{
// Provided methods
fn glwe_automorphism_key_automorphism_tmp_bytes<R, A, K>(
&self,
res_infos: &R,
a_infos: &A,
key_infos: &K,
) -> usize
where R: GGLWEInfos,
A: GGLWEInfos,
K: GGLWEInfos { ... }
fn glwe_automorphism_key_automorphism<R, A, K>(
&self,
res: &mut R,
a: &A,
key: &K,
scratch: &mut Scratch<BE>,
)
where R: GGLWEToMut + SetGaloisElement + GGLWEInfos,
A: GGLWEToRef + GetGaloisElement + GGLWEInfos,
K: GGLWEPreparedToRef<BE> + GetGaloisElement + GGLWEInfos,
Scratch<BE>: ScratchTakeCore<BE> { ... }
fn glwe_automorphism_key_automorphism_inplace<R, K>(
&self,
res: &mut R,
key: &K,
scratch: &mut Scratch<BE>,
)
where R: GGLWEToMut + SetGaloisElement + GetGaloisElement + GGLWEInfos,
K: GGLWEPreparedToRef<BE> + GetGaloisElement + GGLWEInfos,
Scratch<BE>: ScratchTakeCore<BE> { ... }
}Provided Methods§
fn glwe_automorphism_key_automorphism_tmp_bytes<R, A, K>( &self, res_infos: &R, a_infos: &A, key_infos: &K, ) -> usize
fn glwe_automorphism_key_automorphism<R, A, K>(
&self,
res: &mut R,
a: &A,
key: &K,
scratch: &mut Scratch<BE>,
)where
R: GGLWEToMut + SetGaloisElement + GGLWEInfos,
A: GGLWEToRef + GetGaloisElement + GGLWEInfos,
K: GGLWEPreparedToRef<BE> + GetGaloisElement + GGLWEInfos,
Scratch<BE>: ScratchTakeCore<BE>,
fn glwe_automorphism_key_automorphism_inplace<R, K>(
&self,
res: &mut R,
key: &K,
scratch: &mut Scratch<BE>,
)where
R: GGLWEToMut + SetGaloisElement + GetGaloisElement + GGLWEInfos,
K: GGLWEPreparedToRef<BE> + GetGaloisElement + GGLWEInfos,
Scratch<BE>: ScratchTakeCore<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.