pub trait TakeGLWEPk {
// Required method
fn take_glwe_pk<A>(
&mut self,
infos: &A,
) -> (GLWEPublicKey<&mut [u8]>, &mut Self)
where A: GLWEInfos;
}Required Methods§
fn take_glwe_pk<A>(
&mut self,
infos: &A,
) -> (GLWEPublicKey<&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.