Struct ark_marlin::IndexProverKey[][src]

pub struct IndexProverKey<F: PrimeField, PC: PolynomialCommitment<F, DensePolynomial<F>>> {
    pub index_vk: IndexVerifierKey<F, PC>,
    pub index_comm_rands: Vec<PC::Randomness>,
    pub index: Index<F>,
    pub committer_key: PC::CommitterKey,
}

Proving key for a specific index (i.e., R1CS matrices).

Fields

index_vk: IndexVerifierKey<F, PC>

The index verifier key.

index_comm_rands: Vec<PC::Randomness>

The randomness for the index polynomial commitments.

index: Index<F>

The index itself.

committer_key: PC::CommitterKey

The committer key for this index, trimmed from the universal SRS.

Trait Implementations

impl<F: PrimeField, PC: PolynomialCommitment<F, DensePolynomial<F>>> CanonicalDeserialize for IndexProverKey<F, PC>[src]

impl<F: PrimeField, PC: PolynomialCommitment<F, DensePolynomial<F>>> CanonicalSerialize for IndexProverKey<F, PC>[src]

impl<F: PrimeField, PC: PolynomialCommitment<F, DensePolynomial<F>>> Clone for IndexProverKey<F, PC> where
    PC::Commitment: Clone
[src]

Auto Trait Implementations

impl<F, PC> !RefUnwindSafe for IndexProverKey<F, PC>

impl<F, PC> !Send for IndexProverKey<F, PC>

impl<F, PC> !Sync for IndexProverKey<F, PC>

impl<F, PC> Unpin for IndexProverKey<F, PC> where
    F: Unpin,
    <PC as PolynomialCommitment<F, DensePolynomial<F>>>::Commitment: Unpin,
    <PC as PolynomialCommitment<F, DensePolynomial<F>>>::CommitterKey: Unpin,
    <PC as PolynomialCommitment<F, DensePolynomial<F>>>::Randomness: Unpin,
    <PC as PolynomialCommitment<F, DensePolynomial<F>>>::VerifierKey: Unpin

impl<F, PC> UnwindSafe for IndexProverKey<F, PC> where
    F: RefUnwindSafe + UnwindSafe,
    <PC as PolynomialCommitment<F, DensePolynomial<F>>>::Commitment: UnwindSafe,
    <PC as PolynomialCommitment<F, DensePolynomial<F>>>::CommitterKey: UnwindSafe,
    <PC as PolynomialCommitment<F, DensePolynomial<F>>>::Randomness: UnwindSafe,
    <PC as PolynomialCommitment<F, DensePolynomial<F>>>::VerifierKey: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,