Struct snarkvm_wasm::algorithms::snark::Groth16VerifierGadget[][src]

pub struct Groth16VerifierGadget<PairingE, ConstraintF, P> where
    P: PairingGadget<PairingE, ConstraintF>,
    PairingE: PairingEngine,
    ConstraintF: Field
{ /* fields omitted */ }

Trait Implementations

impl<PairingE, ConstraintF, P, C, V> SNARKVerifierGadget<Groth16<PairingE, C, V>, ConstraintF> for Groth16VerifierGadget<PairingE, ConstraintF, P> where
    C: ConstraintSynthesizer<<PairingE as PairingEngine>::Fr>,
    P: PairingGadget<PairingE, ConstraintF>,
    V: ToConstraintField<<PairingE as PairingEngine>::Fr>,
    PairingE: PairingEngine,
    ConstraintF: Field
[src]

type ProofGadget = ProofGadget<PairingE, ConstraintF, P>

type VerificationKeyGadget = VerifyingKeyGadget<PairingE, ConstraintF, P>

Auto Trait Implementations

impl<PairingE, ConstraintF, P> RefUnwindSafe for Groth16VerifierGadget<PairingE, ConstraintF, P> where
    ConstraintF: RefUnwindSafe,
    P: RefUnwindSafe,
    PairingE: RefUnwindSafe

impl<PairingE, ConstraintF, P> Send for Groth16VerifierGadget<PairingE, ConstraintF, P> where
    P: Send

impl<PairingE, ConstraintF, P> Sync for Groth16VerifierGadget<PairingE, ConstraintF, P> where
    P: Sync

impl<PairingE, ConstraintF, P> Unpin for Groth16VerifierGadget<PairingE, ConstraintF, P> where
    ConstraintF: Unpin,
    P: Unpin,
    PairingE: Unpin

impl<PairingE, ConstraintF, P> UnwindSafe for Groth16VerifierGadget<PairingE, ConstraintF, P> where
    ConstraintF: UnwindSafe,
    P: UnwindSafe,
    PairingE: 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> 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, 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>,