[][src]Struct dusk_plonk::prelude::VerifierKey

pub struct VerifierKey {
    pub n: usize,
    pub arithmetic: VerifierKey,
    pub logic: VerifierKey,
    pub range: VerifierKey,
    pub ecc: VerifierKey,
    pub permutation: VerifierKey,
}

PLONK circuit verification key

Fields

n: usize

Circuit size

arithmetic: VerifierKey

VerifierKey for arithmetic gates

logic: VerifierKey

VerifierKey for logic gates

range: VerifierKey

VerifierKey for range gates

ecc: VerifierKey

VerifierKey for ecc gates

permutation: VerifierKey

VerifierKey for permutation checks

Trait Implementations

impl Debug for VerifierKey[src]

Auto Trait Implementations

impl RefUnwindSafe for VerifierKey

impl Send for VerifierKey

impl Sync for VerifierKey

impl Unpin for VerifierKey

impl UnwindSafe for VerifierKey

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