pub trait TakeAutomorphismKeyPrepared<B: Backend> {
// Required method
fn take_automorphism_key_prepared(
&mut self,
n: usize,
basek: usize,
k: usize,
rows: usize,
digits: usize,
rank: usize,
) -> (GGLWEAutomorphismKeyPrepared<&mut [u8], B>, &mut Self);
}Required Methods§
fn take_automorphism_key_prepared( &mut self, n: usize, basek: usize, k: usize, rows: usize, digits: usize, rank: usize, ) -> (GGLWEAutomorphismKeyPrepared<&mut [u8], B>, &mut Self)
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.