[][src]Struct reverie::preprocessing::preprocessing::PreprocessingExecution

pub struct PreprocessingExecution<D: Domain> { /* fields omitted */ }

Implementation of pre-processing phase used by the prover during online execution

Implementations

impl<D: Domain> PreprocessingExecution<D>[src]

pub fn new(root: [u8; 32], branches: &[Vec<D::Batch>]) -> Self[src]

pub fn prove(&mut self, program: &[Instruction<D::Scalar>])[src]

pub fn done(self) -> (Hash, Vec<Hash>)[src]

Auto Trait Implementations

impl<D> RefUnwindSafe for PreprocessingExecution<D> where
    D: RefUnwindSafe,
    <D as Domain>::Batch: RefUnwindSafe,
    <D as Domain>::Sharing: RefUnwindSafe

impl<D> Send for PreprocessingExecution<D> where
    <D as Domain>::Batch: Send,
    <D as Domain>::Sharing: Send

impl<D> Sync for PreprocessingExecution<D> where
    <D as Domain>::Batch: Sync,
    <D as Domain>::Sharing: Sync

impl<D> Unpin for PreprocessingExecution<D> where
    D: Unpin,
    <D as Domain>::Batch: Unpin,
    <D as Domain>::Sharing: Unpin

impl<D> UnwindSafe for PreprocessingExecution<D> where
    D: UnwindSafe,
    <D as Domain>::Batch: UnwindSafe,
    <D as Domain>::Sharing: 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[src]

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