Struct zkinterface::structs::constraints::BilinearConstraint[][src]

pub struct BilinearConstraint {
    pub linear_combination_a: Variables,
    pub linear_combination_b: Variables,
    pub linear_combination_c: Variables,
}

Fields

linear_combination_a: Variableslinear_combination_b: Variableslinear_combination_c: Variables

Implementations

impl BilinearConstraint[src]

pub fn build<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr>(
    &'args self,
    builder: &'mut_bldr mut FlatBufferBuilder<'bldr>
) -> WIPOffset<BilinearConstraint<'bldr>>
[src]

Add this structure into a Flatbuffers message builder.

Trait Implementations

impl Clone for BilinearConstraint[src]

impl Debug for BilinearConstraint[src]

impl Default for BilinearConstraint[src]

impl<'de> Deserialize<'de> for BilinearConstraint[src]

impl Eq for BilinearConstraint[src]

impl PartialEq<BilinearConstraint> for BilinearConstraint[src]

impl Serialize for BilinearConstraint[src]

impl StructuralEq for BilinearConstraint[src]

impl StructuralPartialEq for BilinearConstraint[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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>,