pub struct WrappedCircuit<F: Field, E: Engine> { /* private fields */ }
Trait Implementations§
Source§impl<F: Field, E: Engine> Circuit<E> for WrappedCircuit<F, E>
impl<F: Field, E: Engine> Circuit<E> for WrappedCircuit<F, E>
Source§fn synthesize<CS: ConstraintSystem<E>>(
self,
cs: &mut CS,
) -> Result<(), SynthesisError>
fn synthesize<CS: ConstraintSystem<E>>( self, cs: &mut CS, ) -> Result<(), SynthesisError>
Synthesize the circuit into a rank-1 quadratic constraint system
Auto Trait Implementations§
impl<F, E> Freeze for WrappedCircuit<F, E>
impl<F, E> !RefUnwindSafe for WrappedCircuit<F, E>
impl<F, E> !Send for WrappedCircuit<F, E>
impl<F, E> !Sync for WrappedCircuit<F, E>
impl<F, E> Unpin for WrappedCircuit<F, E>
impl<F, E> !UnwindSafe for WrappedCircuit<F, E>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more