Struct snarkvm_wasm::Namespace[][src]

pub struct Namespace<'a, F, CS>(_, _)
where
    CS: ConstraintSystem<F>,
    F: Field
;
Expand description

This is a “namespaced” constraint system which borrows a constraint system (pushing a namespace context) and, when dropped, pops out of the namespace context.

Trait Implementations

impl<'_, F, CS> ConstraintSystem<F> for Namespace<'_, F, CS> where
    CS: ConstraintSystem<F>,
    F: Field
[src]

type Root = <CS as ConstraintSystem<F>>::Root

Represents the type of the “root” of this constraint system so that nested namespaces can minimize indirection. Read more

pub fn one() -> Variable[src]

Return the “one” input variable

pub fn alloc<FN, A, AR>(
    &mut self,
    annotation: A,
    f: FN
) -> Result<Variable, SynthesisError> where
    A: FnOnce() -> AR,
    FN: FnOnce() -> Result<F, SynthesisError>,
    AR: AsRef<str>, 
[src]

Allocate a private variable in the constraint system. The provided function is used to determine the assignment of the variable. The given annotation function is invoked in testing contexts in order to derive a unique name for this variable in the current namespace. Read more

pub fn alloc_input<FN, A, AR>(
    &mut self,
    annotation: A,
    f: FN
) -> Result<Variable, SynthesisError> where
    A: FnOnce() -> AR,
    FN: FnOnce() -> Result<F, SynthesisError>,
    AR: AsRef<str>, 
[src]

Allocate a public variable in the constraint system. The provided function is used to determine the assignment of the variable. Read more

pub fn enforce<A, AR, LA, LB, LC>(&mut self, annotation: A, a: LA, b: LB, c: LC) where
    LC: FnOnce(LinearCombination<F>) -> LinearCombination<F>,
    A: FnOnce() -> AR,
    AR: AsRef<str>,
    LA: FnOnce(LinearCombination<F>) -> LinearCombination<F>,
    LB: FnOnce(LinearCombination<F>) -> LinearCombination<F>, 
[src]

Enforce that A * B = C. The annotation function is invoked in testing contexts in order to derive a unique name for the constraint in the current namespace. Read more

pub fn push_namespace<NR, N>(&mut self, N) where
    N: FnOnce() -> NR,
    NR: AsRef<str>, 
[src]

Create a new (sub)namespace and enter into it. Not intended for downstream use; use namespace instead. Read more

pub fn pop_namespace(&mut self)[src]

Exit out of the existing namespace. Not intended for downstream use; use namespace instead. Read more

pub fn get_root(
    &mut self
) -> &mut <Namespace<'_, F, CS> as ConstraintSystem<F>>::Root
[src]

Gets the “root” constraint system, bypassing the namespacing. Not intended for downstream use; use namespace instead. Read more

pub fn num_constraints(&self) -> usize[src]

Output the number of constraints in the system.

pub fn num_public_variables(&self) -> usize[src]

Output the number of public input variables to the system.

pub fn num_private_variables(&self) -> usize[src]

Output the number of private input variables to the system.

fn ns<NR, N>(&mut self, name_fn: N) -> Namespace<'_, F, Self::Root> where
    N: FnOnce() -> NR,
    NR: AsRef<str>, 
[src]

Begin a namespace for this constraint system.

impl<'_, F, CS> Drop for Namespace<'_, F, CS> where
    CS: ConstraintSystem<F>,
    F: Field
[src]

pub fn drop(&mut self)[src]

Executes the destructor for this type. Read more

Auto Trait Implementations

impl<'a, F, CS> RefUnwindSafe for Namespace<'a, F, CS> where
    CS: RefUnwindSafe,
    F: RefUnwindSafe

impl<'a, F, CS> Send for Namespace<'a, F, CS> where
    CS: Send

impl<'a, F, CS> Sync for Namespace<'a, F, CS> where
    CS: Sync

impl<'a, F, CS> Unpin for Namespace<'a, F, CS> where
    F: Unpin

impl<'a, F, CS> !UnwindSafe for Namespace<'a, F, CS>

Blanket Implementations

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

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

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

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> Pointable for T

pub const ALIGN: usize

The alignment of pointer.

type Init = T

The type for initializers.

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

Initializes a with the given initializer. Read more

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

Dereferences the given pointer. Read more

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

Mutably dereferences the given pointer. Read more

pub unsafe fn drop(ptr: usize)

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

impl<T> Same<T> for T

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.

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

Performs the conversion.

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.

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

Performs the conversion.

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

pub fn vzip(self) -> V