pub trait CircuitsParams: Debug + Copy {
    // Required methods
    fn total_chunks(&self) -> usize;
    fn set_total_chunk(&mut self, total_chunks: usize);
    fn max_rws(&self) -> Option<usize>;
}
Expand description

Circuit Setup Parameters. These can be fixed/concrete or unset/dynamic.

Required Methods§

source

fn total_chunks(&self) -> usize

Return the total number of chunks

source

fn set_total_chunk(&mut self, total_chunks: usize)

Set total number of chunks

source

fn max_rws(&self) -> Option<usize>

Return the maximum Rw

Object Safety§

This trait is not object safe.

Implementors§