[][src]Struct bellperson::groth16::MappedParameters

pub struct MappedParameters<E: Engine> {
    pub param_file: PathBuf,
    pub vk: VerifyingKey<E>,
    pub h: Vec<Range<usize>>,
    pub l: Vec<Range<usize>>,
    pub a: Vec<Range<usize>>,
    pub b_g1: Vec<Range<usize>>,
    pub b_g2: Vec<Range<usize>>,
    pub checked: bool,
    pub _e: PhantomData<E>,
}

Fields

param_file: PathBufvk: VerifyingKey<E>h: Vec<Range<usize>>l: Vec<Range<usize>>a: Vec<Range<usize>>b_g1: Vec<Range<usize>>b_g2: Vec<Range<usize>>checked: bool_e: PhantomData<E>

Trait Implementations

impl<E: Clone + Engine> Clone for MappedParameters<E>[src]

impl<'a, E: Engine> ParameterSource<E> for &'a MappedParameters<E>[src]

type G1Builder = (Arc<Vec<E::G1Affine>>, usize)

type G2Builder = (Arc<Vec<E::G2Affine>>, usize)

impl<E: Engine> Sync for MappedParameters<E>[src]

Auto Trait Implementations

impl<E> RefUnwindSafe for MappedParameters<E> where
    E: RefUnwindSafe,
    <E as Engine>::G1Affine: RefUnwindSafe,
    <E as Engine>::G2Affine: RefUnwindSafe

impl<E> Send for MappedParameters<E> where
    E: Send,
    <E as Engine>::G1Affine: Send,
    <E as Engine>::G2Affine: Send

impl<E> Unpin for MappedParameters<E> where
    E: Unpin,
    <E as Engine>::G1Affine: Unpin,
    <E as Engine>::G2Affine: Unpin

impl<E> UnwindSafe for MappedParameters<E> where
    E: UnwindSafe,
    <E as Engine>::G1Affine: UnwindSafe,
    <E as Engine>::G2Affine: 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>,