pub struct RoundPoly<F: Field> { /* private fields */ }Expand description
A degree-1 univariate polynomial sent by the prover each round.
Represented by its evaluations at 0 and 1:
s(t) = eval_zero * (1 - t) + eval_one * t.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<F> Freeze for RoundPoly<F>where
F: Freeze,
impl<F> RefUnwindSafe for RoundPoly<F>where
F: RefUnwindSafe,
impl<F> Send for RoundPoly<F>where
F: Send,
impl<F> Sync for RoundPoly<F>where
F: Sync,
impl<F> Unpin for RoundPoly<F>where
F: Unpin,
impl<F> UnsafeUnpin for RoundPoly<F>where
F: UnsafeUnpin,
impl<F> UnwindSafe for RoundPoly<F>where
F: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more