pub trait SvpPrepare<B: Backend> {
// Required method
fn svp_prepare<R, A>(
&self,
res: &mut R,
res_col: usize,
a: &A,
a_col: usize,
)
where R: SvpPPolToMut<B>,
A: ScalarZnxToRef;
}Expand description
Prepare a crate::layouts::ScalarZnx into an crate::layouts::SvpPPol.
Required Methods§
fn svp_prepare<R, A>(&self, res: &mut R, res_col: usize, a: &A, a_col: usize)where
R: SvpPPolToMut<B>,
A: ScalarZnxToRef,
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.