Struct ark_poly_commit::ipa_pc::UniversalParams[][src]

pub struct UniversalParams<G: AffineCurve> {
    pub comm_key: Vec<G>,
    pub h: G,
    pub s: G,
}

UniversalParams are the universal parameters for the inner product arg scheme.

Fields

comm_key: Vec<G>

The key used to commit to polynomials.

h: G

Some group generator.

s: G

Some group generator specifically used for hiding.

Trait Implementations

impl<G: AffineCurve> CanonicalDeserialize for UniversalParams<G>[src]

impl<G: AffineCurve> CanonicalSerialize for UniversalParams<G>[src]

impl<G: AffineCurve> Clone for UniversalParams<G>[src]

impl<G: AffineCurve> Debug for UniversalParams<G>[src]

impl<G: AffineCurve> Default for UniversalParams<G>[src]

impl<G: AffineCurve> PCUniversalParams for UniversalParams<G>[src]

Auto Trait Implementations

impl<G> RefUnwindSafe for UniversalParams<G> where
    G: RefUnwindSafe

impl<G> Send for UniversalParams<G>

impl<G> Sync for UniversalParams<G>

impl<G> Unpin for UniversalParams<G> where
    G: Unpin

impl<G> UnwindSafe for UniversalParams<G> where
    G: 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>,