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