[][src]Trait bellperson::multiexp::SourceBuilder

pub trait SourceBuilder<G: CurveAffine>: Send + Sync + 'static + Clone {
    type Source: Source<G>;
    fn new(self) -> Self::Source;
fn get(self) -> (Arc<Vec<G>>, usize); }

An object that builds a source of bases.

Associated Types

type Source: Source<G>

Loading content...

Required methods

fn new(self) -> Self::Source

fn get(self) -> (Arc<Vec<G>>, usize)

Loading content...

Implementations on Foreign Types

impl<G: CurveAffine> SourceBuilder<G> for (Arc<Vec<G>>, usize)[src]

type Source = (Arc<Vec<G>>, usize)

Loading content...

Implementors

Loading content...