pub struct RangeTupleCheckerAir<const N: usize> {
pub bus: RangeTupleCheckerBus<N>,
}
Fields§
§bus: RangeTupleCheckerBus<N>
Implementations§
Trait Implementations§
Source§impl<AB: InteractionBuilder + PairBuilder, const N: usize> Air<AB> for RangeTupleCheckerAir<N>
impl<AB: InteractionBuilder + PairBuilder, const N: usize> Air<AB> for RangeTupleCheckerAir<N>
Source§impl<F: Field, const N: usize> BaseAir<F> for RangeTupleCheckerAir<N>
impl<F: Field, const N: usize> BaseAir<F> for RangeTupleCheckerAir<N>
fn preprocessed_trace(&self) -> Option<RowMajorMatrix<F>>
Source§impl<F: Field, const N: usize> BaseAirWithPublicValues<F> for RangeTupleCheckerAir<N>
impl<F: Field, const N: usize> BaseAirWithPublicValues<F> for RangeTupleCheckerAir<N>
fn num_public_values(&self) -> usize
Source§impl<const N: usize> Clone for RangeTupleCheckerAir<N>
impl<const N: usize> Clone for RangeTupleCheckerAir<N>
Source§fn clone(&self) -> RangeTupleCheckerAir<N>
fn clone(&self) -> RangeTupleCheckerAir<N>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<const N: usize> Debug for RangeTupleCheckerAir<N>
impl<const N: usize> Debug for RangeTupleCheckerAir<N>
Source§impl<F: Field, const N: usize> PartitionedBaseAir<F> for RangeTupleCheckerAir<N>
impl<F: Field, const N: usize> PartitionedBaseAir<F> for RangeTupleCheckerAir<N>
Source§fn cached_main_widths(&self) -> Vec<usize>
fn cached_main_widths(&self) -> Vec<usize>
By default, an AIR has no cached main trace.
Source§fn common_main_width(&self) -> usize
fn common_main_width(&self) -> usize
By default, an AIR has only one private main trace.
impl<const N: usize> Copy for RangeTupleCheckerAir<N>
Auto Trait Implementations§
impl<const N: usize> Freeze for RangeTupleCheckerAir<N>
impl<const N: usize> RefUnwindSafe for RangeTupleCheckerAir<N>
impl<const N: usize> Send for RangeTupleCheckerAir<N>
impl<const N: usize> Sync for RangeTupleCheckerAir<N>
impl<const N: usize> Unpin for RangeTupleCheckerAir<N>
impl<const N: usize> UnwindSafe for RangeTupleCheckerAir<N>
Blanket Implementations§
Source§impl<SC, T> AnyRap<SC> for Twhere
SC: StarkGenericConfig,
T: Rap<SymbolicRapBuilder<<<<SC as StarkGenericConfig>::Pcs as Pcs<<SC as StarkGenericConfig>::Challenge, <SC as StarkGenericConfig>::Challenger>>::Domain as PolynomialSpace>::Val>> + for<'a> Rap<ProverConstraintFolder<'a, SC>> + for<'a> Rap<DebugConstraintBuilder<'a, SC>> + BaseAirWithPublicValues<<<<SC as StarkGenericConfig>::Pcs as Pcs<<SC as StarkGenericConfig>::Challenge, <SC as StarkGenericConfig>::Challenger>>::Domain as PolynomialSpace>::Val> + PartitionedBaseAir<<<<SC as StarkGenericConfig>::Pcs as Pcs<<SC as StarkGenericConfig>::Challenge, <SC as StarkGenericConfig>::Challenger>>::Domain as PolynomialSpace>::Val> + Send + Sync + 'static,
impl<SC, T> AnyRap<SC> for Twhere
SC: StarkGenericConfig,
T: Rap<SymbolicRapBuilder<<<<SC as StarkGenericConfig>::Pcs as Pcs<<SC as StarkGenericConfig>::Challenge, <SC as StarkGenericConfig>::Challenger>>::Domain as PolynomialSpace>::Val>> + for<'a> Rap<ProverConstraintFolder<'a, SC>> + for<'a> Rap<DebugConstraintBuilder<'a, SC>> + BaseAirWithPublicValues<<<<SC as StarkGenericConfig>::Pcs as Pcs<<SC as StarkGenericConfig>::Challenge, <SC as StarkGenericConfig>::Challenger>>::Domain as PolynomialSpace>::Val> + PartitionedBaseAir<<<<SC as StarkGenericConfig>::Pcs as Pcs<<SC as StarkGenericConfig>::Challenge, <SC as StarkGenericConfig>::Challenger>>::Domain as PolynomialSpace>::Val> + Send + Sync + 'static,
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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