[][src]Struct snarkos_polycommit::BatchLCProof

pub struct BatchLCProof<F: Field, PC: PolynomialCommitment<F>> {
    pub proof: PC::BatchProof,
    pub evals: Option<Vec<F>>,
}

A proof of satisfaction of linear combinations.

Fields

proof: PC::BatchProof

Evaluation proof.

evals: Option<Vec<F>>

Evaluations required to verify the proof.

Trait Implementations

impl<F: Field, PC: PolynomialCommitment<F>> CanonicalDeserialize for BatchLCProof<F, PC>[src]

impl<F: Field, PC: PolynomialCommitment<F>> CanonicalSerialize for BatchLCProof<F, PC>[src]

impl<F: Clone + Field, PC: Clone + PolynomialCommitment<F>> Clone for BatchLCProof<F, PC> where
    PC::BatchProof: Clone
[src]

impl<F: Debug + Field, PC: Debug + PolynomialCommitment<F>> Debug for BatchLCProof<F, PC> where
    PC::BatchProof: Debug
[src]

impl<F: Field, PC: PolynomialCommitment<F>> FromBytes for BatchLCProof<F, PC>[src]

impl<F: Field, PC: PolynomialCommitment<F>> ToBytes for BatchLCProof<F, PC>[src]

Auto Trait Implementations

impl<F, PC> RefUnwindSafe for BatchLCProof<F, PC> where
    F: RefUnwindSafe,
    <PC as PolynomialCommitment<F>>::BatchProof: RefUnwindSafe

impl<F, PC> Send for BatchLCProof<F, PC> where
    <PC as PolynomialCommitment<F>>::BatchProof: Send

impl<F, PC> Sync for BatchLCProof<F, PC> where
    <PC as PolynomialCommitment<F>>::BatchProof: Sync

impl<F, PC> Unpin for BatchLCProof<F, PC> where
    F: Unpin,
    <PC as PolynomialCommitment<F>>::BatchProof: Unpin

impl<F, PC> UnwindSafe for BatchLCProof<F, PC> where
    F: UnwindSafe,
    <PC as PolynomialCommitment<F>>::BatchProof: 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, U> Into<U> for T where
    U: From<T>, 
[src]

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>,