pub struct EvalProof {
pub x: u64,
pub y: u64,
pub proof: [u8; 32],
}Expand description
An evaluation proof for a polynomial commitment.
Fields§
§x: u64The evaluation point.
y: u64The claimed evaluation result.
proof: [u8; 32]The proof hash.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for EvalProof
impl RefUnwindSafe for EvalProof
impl Send for EvalProof
impl Sync for EvalProof
impl Unpin for EvalProof
impl UnsafeUnpin for EvalProof
impl UnwindSafe for EvalProof
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