openvm_stark_backend::config

Struct StarkConfig

Source
pub struct StarkConfig<Pcs, RapPhaseSeq, Challenge, Challenger> { /* private fields */ }

Implementations§

Source§

impl<Pcs, RapPhaseSeq, Challenge, Challenger> StarkConfig<Pcs, RapPhaseSeq, Challenge, Challenger>

Source

pub const fn new(pcs: Pcs, rap_phase: RapPhaseSeq) -> Self

Trait Implementations§

Source§

impl<Pcs: Debug, RapPhaseSeq: Debug, Challenge: Debug, Challenger: Debug> Debug for StarkConfig<Pcs, RapPhaseSeq, Challenge, Challenger>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
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>,

Source§

type Pcs = Pcs

The PCS used to commit to trace polynomials.
Source§

type RapPhaseSeq = Rps

The RAP challenge phases used to establish, e.g., that interactions are balanced.
Source§

type Challenge = Challenge

The field from which most random challenges are drawn.
Source§

type Challenger = Challenger

The challenger (Fiat-Shamir) implementation used.
Source§

fn pcs(&self) -> &Self::Pcs

Source§

fn rap_phase_seq(&self) -> &Self::RapPhaseSeq

Auto Trait Implementations§

§

impl<Pcs, RapPhaseSeq, Challenge, Challenger> Freeze for StarkConfig<Pcs, RapPhaseSeq, Challenge, Challenger>
where Pcs: Freeze, RapPhaseSeq: Freeze,

§

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>
where Pcs: Send, RapPhaseSeq: Send, Challenge: Send, Challenger: Send,

§

impl<Pcs, RapPhaseSeq, Challenge, Challenger> Sync for StarkConfig<Pcs, RapPhaseSeq, Challenge, Challenger>
where Pcs: Sync, RapPhaseSeq: Sync, Challenge: Sync, Challenger: Sync,

§

impl<Pcs, RapPhaseSeq, Challenge, Challenger> Unpin for StarkConfig<Pcs, RapPhaseSeq, Challenge, Challenger>
where Pcs: Unpin, RapPhaseSeq: Unpin, Challenge: Unpin, Challenger: Unpin,

§

impl<Pcs, RapPhaseSeq, Challenge, Challenger> UnwindSafe for StarkConfig<Pcs, RapPhaseSeq, Challenge, Challenger>
where Pcs: UnwindSafe, RapPhaseSeq: UnwindSafe, Challenge: UnwindSafe, Challenger: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more