Struct kimchi_msm::logup::LookupProof
source · 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>
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> RefUnwindSafe for LookupProof<T, ID>where ID: RefUnwindSafe, T: RefUnwindSafe,
impl<T, ID> Send for LookupProof<T, ID>where ID: Send, T: Send,
impl<T, ID> Sync for LookupProof<T, ID>where ID: Sync, T: Sync,
impl<T, ID> Unpin for LookupProof<T, ID>where T: Unpin,
impl<T, ID> UnwindSafe for LookupProof<T, ID>where ID: RefUnwindSafe, T: UnwindSafe + RefUnwindSafe,
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