pub struct RecursionChallenge<G>where
    G: AffineRepr,{
    pub chals: Vec<G::ScalarField>,
    pub comm: PolyComm<G>,
}Expand description
A struct to store the challenges inside a ProverProof
Fields§
§chals: Vec<G::ScalarField>Vector of scalar field elements
comm: PolyComm<G>Polynomial commitment
Implementations§
Source§impl<G: AffineRepr> RecursionChallenge<G>
 
impl<G: AffineRepr> RecursionChallenge<G>
Trait Implementations§
Source§impl<G> Clone for RecursionChallenge<G>
 
impl<G> Clone for RecursionChallenge<G>
Source§fn clone(&self) -> RecursionChallenge<G>
 
fn clone(&self) -> RecursionChallenge<G>
Returns a duplicate 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 for RecursionChallenge<G>
 
impl<G> Debug for RecursionChallenge<G>
Source§impl<'de, G> Deserialize<'de> for RecursionChallenge<G>where
    G: AffineRepr + CanonicalDeserialize + CanonicalSerialize,
 
impl<'de, G> Deserialize<'de> for RecursionChallenge<G>where
    G: AffineRepr + CanonicalDeserialize + CanonicalSerialize,
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, CamlF> From<CamlRecursionChallenge<CamlG, CamlF>> for RecursionChallenge<G>
 
impl<G, CamlG, CamlF> From<CamlRecursionChallenge<CamlG, CamlF>> for RecursionChallenge<G>
Source§fn from(caml_ch: CamlRecursionChallenge<CamlG, CamlF>) -> RecursionChallenge<G>
 
fn from(caml_ch: CamlRecursionChallenge<CamlG, CamlF>) -> RecursionChallenge<G>
Converts to this type from the input type.
Source§impl<G, CamlG, CamlF> From<RecursionChallenge<G>> for CamlRecursionChallenge<CamlG, CamlF>
 
impl<G, CamlG, CamlF> From<RecursionChallenge<G>> for CamlRecursionChallenge<CamlG, CamlF>
Source§fn from(ch: RecursionChallenge<G>) -> Self
 
fn from(ch: RecursionChallenge<G>) -> Self
Converts to this type from the input type.
Source§impl<G> PartialEq for RecursionChallenge<G>
 
impl<G> PartialEq for RecursionChallenge<G>
Source§impl<G> Serialize for RecursionChallenge<G>where
    G: AffineRepr + CanonicalDeserialize + CanonicalSerialize,
 
impl<G> Serialize for RecursionChallenge<G>where
    G: AffineRepr + CanonicalDeserialize + CanonicalSerialize,
impl<G> StructuralPartialEq for RecursionChallenge<G>where
    G: AffineRepr,
Auto Trait Implementations§
impl<G> Freeze for RecursionChallenge<G>
impl<G> RefUnwindSafe for RecursionChallenge<G>where
    <G as AffineRepr>::ScalarField: RefUnwindSafe,
    G: RefUnwindSafe,
impl<G> Send for RecursionChallenge<G>
impl<G> Sync for RecursionChallenge<G>
impl<G> Unpin for RecursionChallenge<G>
impl<G> UnwindSafe for RecursionChallenge<G>where
    <G as AffineRepr>::ScalarField: UnwindSafe,
    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