pub trait GLWECopy<BE: Backend> {
// Required method
fn glwe_copy<R, A>(&self, res: &mut R, a: &A)
where R: GLWEToBackendMut<BE>,
A: GLWEToBackendRef<BE>;
}Required Methods§
fn glwe_copy<R, A>(&self, res: &mut R, a: &A)where
R: GLWEToBackendMut<BE>,
A: GLWEToBackendRef<BE>,
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.