pub struct LookupProof<T, ID> { /* private fields */ }
Expand description
Represents the proof of the lookup argument
It is parametrized by the type T
which can be either:
Polycomm<G: KimchiCurve>
for the commitmentsF
for the evaluations at ζ (resp. ζω).
Trait Implementations§
Source§impl<T: Clone, ID: Clone> Clone for LookupProof<T, ID>
impl<T: Clone, ID: Clone> Clone for LookupProof<T, ID>
Source§fn clone(&self) -> LookupProof<T, ID>
fn clone(&self) -> LookupProof<T, ID>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'lt, G, ID: LookupTableID> IntoIterator for &'lt LookupProof<G, ID>
Iterator implementation to abstract the content of the structure.
It can be used to iterate over the commitments (resp. the evaluations)
without requiring to have a look at the inner fields.
impl<'lt, G, ID: LookupTableID> IntoIterator for &'lt LookupProof<G, ID>
Iterator implementation to abstract the content of the structure. It can be used to iterate over the commitments (resp. the evaluations) without requiring to have a look at the inner fields.
Auto Trait Implementations§
impl<T, ID> Freeze for LookupProof<T, ID>where
T: Freeze,
impl<T, ID> RefUnwindSafe for LookupProof<T, ID>where
T: RefUnwindSafe,
ID: RefUnwindSafe,
impl<T, ID> Send for LookupProof<T, ID>
impl<T, ID> Sync for LookupProof<T, ID>
impl<T, ID> Unpin for LookupProof<T, ID>where
T: Unpin,
impl<T, ID> UnwindSafe for LookupProof<T, ID>
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