Struct kimchi::proof::LookupCommitments
source · pub struct LookupCommitments<G: AffineRepr> {
pub sorted: Vec<PolyComm<G>>,
pub aggreg: PolyComm<G>,
pub runtime: Option<PolyComm<G>>,
}
Expand description
Commitments linked to the lookup feature
Fields§
§sorted: Vec<PolyComm<G>>
Commitments to the sorted lookup table polynomial (may have chunks)
aggreg: PolyComm<G>
Commitment to the lookup aggregation polynomial
runtime: Option<PolyComm<G>>
Optional commitment to concatenated runtime tables
Trait Implementations§
source§impl<G: Clone + AffineRepr> Clone for LookupCommitments<G>
impl<G: Clone + AffineRepr> Clone for LookupCommitments<G>
source§fn clone(&self) -> LookupCommitments<G>
fn clone(&self) -> LookupCommitments<G>
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<G: Debug + AffineRepr> Debug for LookupCommitments<G>
impl<G: Debug + AffineRepr> Debug for LookupCommitments<G>
source§impl<'de, G> Deserialize<'de> for LookupCommitments<G>where
G: CanonicalDeserialize + CanonicalSerialize + AffineRepr,
impl<'de, G> Deserialize<'de> for LookupCommitments<G>where G: CanonicalDeserialize + CanonicalSerialize + AffineRepr,
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl<G, CamlG> From<CamlLookupCommitments<CamlG>> for LookupCommitments<G>where
G: AffineRepr,
PolyComm<G>: From<CamlPolyComm<CamlG>>,
impl<G, CamlG> From<CamlLookupCommitments<CamlG>> for LookupCommitments<G>where G: AffineRepr, PolyComm<G>: From<CamlPolyComm<CamlG>>,
source§fn from(_: CamlLookupCommitments<CamlG>) -> LookupCommitments<G>
fn from(_: CamlLookupCommitments<CamlG>) -> LookupCommitments<G>
Converts to this type from the input type.
source§impl<G, CamlG> From<LookupCommitments<G>> for CamlLookupCommitments<CamlG>where
G: AffineRepr,
CamlPolyComm<CamlG>: From<PolyComm<G>>,
impl<G, CamlG> From<LookupCommitments<G>> for CamlLookupCommitments<CamlG>where G: AffineRepr, CamlPolyComm<CamlG>: From<PolyComm<G>>,
source§fn from(_: LookupCommitments<G>) -> Self
fn from(_: LookupCommitments<G>) -> Self
Converts to this type from the input type.
source§impl<G: PartialEq + AffineRepr> PartialEq<LookupCommitments<G>> for LookupCommitments<G>
impl<G: PartialEq + AffineRepr> PartialEq<LookupCommitments<G>> for LookupCommitments<G>
source§fn eq(&self, other: &LookupCommitments<G>) -> bool
fn eq(&self, other: &LookupCommitments<G>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<G> Serialize for LookupCommitments<G>where
G: CanonicalDeserialize + CanonicalSerialize + AffineRepr,
impl<G> Serialize for LookupCommitments<G>where G: CanonicalDeserialize + CanonicalSerialize + AffineRepr,
impl<G: AffineRepr> StructuralPartialEq for LookupCommitments<G>
Auto Trait Implementations§
impl<G> RefUnwindSafe for LookupCommitments<G>where G: RefUnwindSafe,
impl<G> Send for LookupCommitments<G>
impl<G> Sync for LookupCommitments<G>
impl<G> Unpin for LookupCommitments<G>where G: Unpin,
impl<G> UnwindSafe for LookupCommitments<G>where G: 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