pub struct CsWrapperVerifierBuilder<'a, E: Engine, CS: ConstraintSystem<E> + 'static> {
    pub parameters: CSGeometry,
    pub lookup_parameters: LookupParameters,
    /* private fields */
}

Fields§

§parameters: CSGeometry§lookup_parameters: LookupParameters

Implementations§

source§

impl<'a, E: Engine, CS: ConstraintSystem<E> + 'static> CsWrapperVerifierBuilder<'a, E, CS>

source

pub fn new_from_parameters(cs: &'a mut CS, parameters: CSGeometry) -> Self

Trait Implementations§

source§

impl<'a, E: Engine, CS: ConstraintSystem<E> + 'static> CsBuilderImpl<GoldilocksField, CsWrapperVerifierBuilder<'a, E, CS>> for CsWrapperVerifierBuilder<'a, E, CS>

§

type Final<GC: GateConfigurationHolder<GL>, TB: StaticToolboxHolder> = WrapperVerifier<E, CS>

§

type BuildParams<'b> = ()

source§

fn parameters<GC: GateConfigurationHolder<GL>, TB: StaticToolboxHolder>( builder: &CsBuilder<Self, GL, GC, TB>, ) -> CSGeometry

source§

fn allow_gate<GC: GateConfigurationHolder<GL>, TB: StaticToolboxHolder, G: Gate<GL>, TAux: 'static + Send + Sync + Clone>( builder: CsBuilder<Self, GL, GC, TB>, placement_strategy: GatePlacementStrategy, params: <<G as Gate<GL>>::Evaluator as GateConstraintEvaluator<GL>>::UniqueParameterizationParams, aux_data: TAux, ) -> CsBuilder<Self, GL, (GateTypeEntry<GL, G, TAux>, GC), TB>

source§

fn add_tool<GC: GateConfigurationHolder<GL>, TB: StaticToolboxHolder, M: 'static + Send + Sync + Clone, T: 'static + Send + Sync>( builder: CsBuilder<Self, GL, GC, TB>, tool: T, ) -> CsBuilder<Self, GL, GC, (Tool<M, T>, TB)>

§

type GcWithLookup<GC: GateConfigurationHolder<GL>> = (GateTypeEntry<GoldilocksField, LookupFormalGate, (Vec<Option<(usize, usize)>>, usize)>, GC)

source§

fn allow_lookup<GC: GateConfigurationHolder<GL>, TB: StaticToolboxHolder>( builder: CsBuilder<Self, GL, GC, TB>, lookup_parameters: LookupParameters, ) -> CsBuilder<Self, GL, Self::GcWithLookup<GC>, TB>

source§

fn build<'b, GC: GateConfigurationHolder<GL>, TB: StaticToolboxHolder, ARG: Into<Self::BuildParams<'b>>>( builder: CsBuilder<Self, GL, GC, TB>, _params: ARG, ) -> Self::Final<GC, TB>

Auto Trait Implementations§

§

impl<'a, E, CS> Freeze for CsWrapperVerifierBuilder<'a, E, CS>

§

impl<'a, E, CS> !RefUnwindSafe for CsWrapperVerifierBuilder<'a, E, CS>

§

impl<'a, E, CS> Send for CsWrapperVerifierBuilder<'a, E, CS>
where CS: Send,

§

impl<'a, E, CS> Sync for CsWrapperVerifierBuilder<'a, E, CS>
where CS: Sync,

§

impl<'a, E, CS> Unpin for CsWrapperVerifierBuilder<'a, E, CS>

§

impl<'a, E, CS> !UnwindSafe for CsWrapperVerifierBuilder<'a, E, CS>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

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 more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
source§

impl<T> PipeOp<T> for T

source§

fn to<F, U>(self, f: F) -> U
where F: FnOnce(T) -> U,

source§

fn op<F>(self, f: F) -> T
where F: FnOnce(&mut T),

source§

impl<T> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V