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