pub trait TakeGLWECtSlice {
// Required method
fn take_glwe_ct_slice(
&mut self,
size: usize,
n: usize,
basek: usize,
k: usize,
rank: usize,
) -> (Vec<GLWECiphertext<&mut [u8]>>, &mut Self);
}Required Methods§
fn take_glwe_ct_slice( &mut self, size: usize, n: usize, basek: usize, k: usize, rank: usize, ) -> (Vec<GLWECiphertext<&mut [u8]>>, &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.