[][src]Struct bellperson::util_cs::metric_cs::MetricCS

pub struct MetricCS<E: Engine> { /* fields omitted */ }

Implementations

impl<E: Engine> MetricCS<E>[src]

pub fn new() -> Self[src]

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

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

pub fn pretty_print_list(&self) -> Vec<String>[src]

pub fn pretty_print(&self) -> String[src]

Trait Implementations

impl<E: Engine> ConstraintSystem<E> for MetricCS<E>[src]

type Root = Self

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

impl<E: Engine> Default for MetricCS<E>[src]

Auto Trait Implementations

impl<E> RefUnwindSafe for MetricCS<E> where
    <E as ScalarEngine>::Fr: RefUnwindSafe

impl<E> Send for MetricCS<E> where
    <E as ScalarEngine>::Fr: Send

impl<E> Sync for MetricCS<E> where
    <E as ScalarEngine>::Fr: Sync

impl<E> Unpin for MetricCS<E> where
    <E as ScalarEngine>::Fr: Unpin

impl<E> UnwindSafe for MetricCS<E> where
    <E as ScalarEngine>::Fr: UnwindSafe

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> Pointable for T

type Init = T

The type for initializers.

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.

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