[][src]Struct snarkos_gadgets::algorithms::snark::gm17::GM17ProofGadget

pub struct GM17ProofGadget<PairingE: PairingEngine, F: Field, P: PairingGadget<PairingE, F>> {
    pub a: P::G1Gadget,
    pub b: P::G2Gadget,
    pub c: P::G1Gadget,
}

Fields

a: P::G1Gadgetb: P::G2Gadgetc: P::G1Gadget

Trait Implementations

impl<Pairing: PairingEngine, F: Field, P: PairingGadget<Pairing, F>> AllocBytesGadget<Vec<u8>, F> for GM17ProofGadget<Pairing, F, P>[src]

impl<Pairing: PairingEngine, F: Field, P: PairingGadget<Pairing, F>> AllocGadget<Proof<Pairing>, F> for GM17ProofGadget<Pairing, F, P>[src]

impl<PairingE: PairingEngine, F: Field, P: PairingGadget<PairingE, F>> Clone for GM17ProofGadget<PairingE, F, P> where
    P::G1Gadget: Clone,
    P::G2Gadget: Clone
[src]

Auto Trait Implementations

impl<PairingE, F, P> RefUnwindSafe for GM17ProofGadget<PairingE, F, P> where
    <P as PairingGadget<PairingE, F>>::G1Gadget: RefUnwindSafe,
    <P as PairingGadget<PairingE, F>>::G2Gadget: RefUnwindSafe

impl<PairingE, F, P> Send for GM17ProofGadget<PairingE, F, P> where
    <P as PairingGadget<PairingE, F>>::G1Gadget: Send,
    <P as PairingGadget<PairingE, F>>::G2Gadget: Send

impl<PairingE, F, P> Sync for GM17ProofGadget<PairingE, F, P> where
    <P as PairingGadget<PairingE, F>>::G1Gadget: Sync,
    <P as PairingGadget<PairingE, F>>::G2Gadget: Sync

impl<PairingE, F, P> Unpin for GM17ProofGadget<PairingE, F, P> where
    <P as PairingGadget<PairingE, F>>::G1Gadget: Unpin,
    <P as PairingGadget<PairingE, F>>::G2Gadget: Unpin

impl<PairingE, F, P> UnwindSafe for GM17ProofGadget<PairingE, F, P> where
    <P as PairingGadget<PairingE, F>>::G1Gadget: UnwindSafe,
    <P as PairingGadget<PairingE, F>>::G2Gadget: 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>,