[][src]Struct r1cs::WitnessGenerator

pub struct WitnessGenerator<F: Field> { /* fields omitted */ }

Generates some elements of the witness.

Methods

impl<F: Field> WitnessGenerator<F>[src]

pub fn new<T>(inputs: Vec<Wire>, generate: T) -> Self where
    T: Fn(&mut WireValues<F>) + 'static, 
[src]

Creates a new WitnessGenerator.

Arguments

  • inputs - the wires whose values must be set before this generator can run
  • generate - a function which generates some elements of the witness

pub fn inputs(&self) -> &[Wire][src]

The wires whose values must be set before this generator can run.

pub fn generate(&self, values: &mut WireValues<F>)[src]

Run the generator.

Auto Trait Implementations

impl<F> !Send for WitnessGenerator<F>

impl<F> !Sync for WitnessGenerator<F>

impl<F> Unpin for WitnessGenerator<F>

impl<F> !UnwindSafe for WitnessGenerator<F>

impl<F> !RefUnwindSafe for WitnessGenerator<F>

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for 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<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]