pub trait GLWEAutomorphismKeyAutomorphism<BE: Backend> {
// Required 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,
key_size: usize,
scratch: &mut ScratchArena<'_, BE>,
)
where R: GGLWEToBackendMut<BE> + SetGaloisElement + GGLWEInfos,
A: GGLWEToBackendRef<BE> + GetGaloisElement + GGLWEInfos,
K: GGLWEPreparedToBackendRef<BE> + GetGaloisElement + GGLWEInfos;
fn glwe_automorphism_key_automorphism_assign<R, K>(
&self,
res: &mut R,
key: &K,
key_size: usize,
scratch: &mut ScratchArena<'_, BE>,
)
where R: GGLWEToBackendMut<BE> + SetGaloisElement + GetGaloisElement + GGLWEInfos,
K: GGLWEPreparedToBackendRef<BE> + GetGaloisElement + GGLWEInfos;
}Required 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,
key_size: usize,
scratch: &mut ScratchArena<'_, BE>,
)where
R: GGLWEToBackendMut<BE> + SetGaloisElement + GGLWEInfos,
A: GGLWEToBackendRef<BE> + GetGaloisElement + GGLWEInfos,
K: GGLWEPreparedToBackendRef<BE> + GetGaloisElement + GGLWEInfos,
fn glwe_automorphism_key_automorphism_assign<R, K>(
&self,
res: &mut R,
key: &K,
key_size: usize,
scratch: &mut ScratchArena<'_, BE>,
)where
R: GGLWEToBackendMut<BE> + SetGaloisElement + GetGaloisElement + GGLWEInfos,
K: GGLWEPreparedToBackendRef<BE> + GetGaloisElement + GGLWEInfos,
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.