pub struct Components<'a> {
pub components: Vec<&'a dyn Component>,
pub n_preprocessed_columns: usize,
}Fields§
§components: Vec<&'a dyn Component>§n_preprocessed_columns: usizeImplementations§
Source§impl Components<'_>
impl Components<'_>
pub fn composition_log_degree_bound(&self) -> u32
pub fn mask_points( &self, point: CirclePoint<SecureField>, max_log_degree_bound: u32, include_all_preprocessed_columns: bool, ) -> TreeVec<ColumnVec<Vec<CirclePoint<SecureField>>>>
pub fn eval_composition_polynomial_at_point( &self, point: CirclePoint<SecureField>, mask_values: &TreeVec<Vec<Vec<SecureField>>>, random_coeff: SecureField, max_log_degree_bound: u32, ) -> SecureField
pub fn column_log_sizes(&self) -> TreeVec<ColumnVec<u32>>
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for Components<'a>
impl<'a> !Send for Components<'a>
impl<'a> !Sync for Components<'a>
impl<'a> !UnwindSafe for Components<'a>
impl<'a> Freeze for Components<'a>
impl<'a> Unpin for Components<'a>
impl<'a> UnsafeUnpin for Components<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more