[][src]Struct reverie::preprocessing::verifier::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 omitted(&self) -> usize[src]

pub fn commitment(self, branch_root: &Hash, omitted_commitment: &Hash) -> Hash[src]

pub fn new(tree: &TreePRF) -> Self[src]

pub fn process(
    &mut self,
    program: &[Instruction<D::Scalar>],
    corrections: &[D::Batch],
    masks: &mut Vec<D::Sharing>,
    ab_gamma: &mut Vec<D::Sharing>
) -> Option<()>
[src]

Auto Trait Implementations

impl<D> RefUnwindSafe for PreprocessingExecution<D> where
    <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 as Domain>::Batch: Unpin,
    <D as Domain>::Sharing: Unpin

impl<D> UnwindSafe for PreprocessingExecution<D> where
    <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>,