pub trait GLWEAdd{
// Provided methods
fn glwe_add<R, A, B>(&self, res: &mut R, a: &A, b: &B)
where R: GLWEToMut,
A: GLWEToRef,
B: GLWEToRef { ... }
fn glwe_add_inplace<R, A>(&self, res: &mut R, a: &A)
where R: GLWEToMut,
A: GLWEToRef { ... }
}Provided Methods§
fn glwe_add<R, A, B>(&self, res: &mut R, a: &A, b: &B)
fn glwe_add_inplace<R, A>(&self, res: &mut R, a: &A)
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.