Struct zkinterface::zkinterface_generated::zkinterface::BilinearConstraint[][src]

pub struct BilinearConstraint<'a> {
    pub _tab: Table<'a>,
}

A single R1CS constraint between variables.

  • Represents the linear combinations of variables A, B, C such that: (A) * (B) = (C)
  • A linear combination is given as a sequence of (variable ID, coefficient).

Fields

_tab: Table<'a>

Implementations

impl<'a> BilinearConstraint<'a>[src]

pub fn init_from_table(table: Table<'a>) -> Self[src]

pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr>(
    _fbb: &'mut_bldr mut FlatBufferBuilder<'bldr>,
    args: &'args BilinearConstraintArgs<'args>
) -> WIPOffset<BilinearConstraint<'bldr>>
[src]

pub const VT_LINEAR_COMBINATION_A: VOffsetT[src]

pub const VT_LINEAR_COMBINATION_B: VOffsetT[src]

pub const VT_LINEAR_COMBINATION_C: VOffsetT[src]

pub fn linear_combination_a(&self) -> Option<Variables<'a>>[src]

pub fn linear_combination_b(&self) -> Option<Variables<'a>>[src]

pub fn linear_combination_c(&self) -> Option<Variables<'a>>[src]

Trait Implementations

impl<'a> Clone for BilinearConstraint<'a>[src]

impl<'a> Copy for BilinearConstraint<'a>[src]

impl<'a> Debug for BilinearConstraint<'a>[src]

impl<'a> Follow<'a> for BilinearConstraint<'a>[src]

type Inner = BilinearConstraint<'a>

impl<'a> PartialEq<BilinearConstraint<'a>> for BilinearConstraint<'a>[src]

impl<'a> StructuralPartialEq for BilinearConstraint<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for BilinearConstraint<'a>

impl<'a> Send for BilinearConstraint<'a>

impl<'a> Sync for BilinearConstraint<'a>

impl<'a> Unpin for BilinearConstraint<'a>

impl<'a> UnwindSafe for BilinearConstraint<'a>

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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>,