pub struct StarkConfig<Pcs, RapPhaseSeq, Challenge, Challenger> { /* private fields */ }
Implementations§
Source§impl<Pcs, RapPhaseSeq, Challenge, Challenger> StarkConfig<Pcs, RapPhaseSeq, Challenge, Challenger>
impl<Pcs, RapPhaseSeq, Challenge, Challenger> StarkConfig<Pcs, RapPhaseSeq, Challenge, Challenger>
Trait Implementations§
Source§impl<Pcs: Debug, RapPhaseSeq: Debug, Challenge: Debug, Challenger: Debug> Debug for StarkConfig<Pcs, RapPhaseSeq, Challenge, Challenger>
impl<Pcs: Debug, RapPhaseSeq: Debug, Challenge: Debug, Challenger: Debug> Debug for StarkConfig<Pcs, RapPhaseSeq, Challenge, Challenger>
Source§impl<Pcs, Rps, Challenge, Challenger> StarkGenericConfig for StarkConfig<Pcs, Rps, Challenge, Challenger>where
Challenge: ExtensionField<<Pcs::Domain as PolynomialSpace>::Val>,
Pcs: Pcs<Challenge, Challenger>,
Pcs::Domain: Send + Sync,
Pcs::Commitment: Send + Sync,
Pcs::ProverData: Send + Sync,
Pcs::Proof: Send + Sync,
Rps: RapPhaseSeq<<Pcs::Domain as PolynomialSpace>::Val, Challenge, Challenger>,
Challenger: FieldChallenger<<Pcs::Domain as PolynomialSpace>::Val> + CanObserve<<Pcs as Pcs<Challenge, Challenger>>::Commitment> + CanSample<Challenge>,
impl<Pcs, Rps, Challenge, Challenger> StarkGenericConfig for StarkConfig<Pcs, Rps, Challenge, Challenger>where
Challenge: ExtensionField<<Pcs::Domain as PolynomialSpace>::Val>,
Pcs: Pcs<Challenge, Challenger>,
Pcs::Domain: Send + Sync,
Pcs::Commitment: Send + Sync,
Pcs::ProverData: Send + Sync,
Pcs::Proof: Send + Sync,
Rps: RapPhaseSeq<<Pcs::Domain as PolynomialSpace>::Val, Challenge, Challenger>,
Challenger: FieldChallenger<<Pcs::Domain as PolynomialSpace>::Val> + CanObserve<<Pcs as Pcs<Challenge, Challenger>>::Commitment> + CanSample<Challenge>,
Source§type RapPhaseSeq = Rps
type RapPhaseSeq = Rps
The RAP challenge phases used to establish, e.g., that interactions are balanced.
Source§type Challenger = Challenger
type Challenger = Challenger
The challenger (Fiat-Shamir) implementation used.
fn pcs(&self) -> &Self::Pcs
fn rap_phase_seq(&self) -> &Self::RapPhaseSeq
Auto Trait Implementations§
impl<Pcs, RapPhaseSeq, Challenge, Challenger> Freeze for StarkConfig<Pcs, RapPhaseSeq, Challenge, Challenger>
impl<Pcs, RapPhaseSeq, Challenge, Challenger> RefUnwindSafe for StarkConfig<Pcs, RapPhaseSeq, Challenge, Challenger>where
Pcs: RefUnwindSafe,
RapPhaseSeq: RefUnwindSafe,
Challenge: RefUnwindSafe,
Challenger: RefUnwindSafe,
impl<Pcs, RapPhaseSeq, Challenge, Challenger> Send for StarkConfig<Pcs, RapPhaseSeq, Challenge, Challenger>
impl<Pcs, RapPhaseSeq, Challenge, Challenger> Sync for StarkConfig<Pcs, RapPhaseSeq, Challenge, Challenger>
impl<Pcs, RapPhaseSeq, Challenge, Challenger> Unpin for StarkConfig<Pcs, RapPhaseSeq, Challenge, Challenger>
impl<Pcs, RapPhaseSeq, Challenge, Challenger> UnwindSafe for StarkConfig<Pcs, RapPhaseSeq, Challenge, Challenger>
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