pub struct ProverOnlyData<SC: SGC> {
pub preprocessed_prover_data: Option<<SC::Pcs as Pcs<Challenge<SC>, SC::Challenger>>::ProverData>,
}Expand description
Prover-exclusive data not shared with the verifier.
This contains the PCS prover data for preprocessed traces, which is only needed during proving.
Fields§
§preprocessed_prover_data: Option<<SC::Pcs as Pcs<Challenge<SC>, SC::Challenger>>::ProverData>PCS prover data for preprocessed traces.
Present only when at least one instance has preprocessed columns.
Implementations§
Source§impl<SC: SGC> ProverOnlyData<SC>
impl<SC: SGC> ProverOnlyData<SC>
Sourcepub const fn empty() -> Self
pub const fn empty() -> Self
Create empty ProverOnlyData with no preprocessed prover data.
Auto Trait Implementations§
impl<SC> Freeze for ProverOnlyData<SC>where
<<SC as StarkGenericConfig>::Pcs as Pcs<<SC as StarkGenericConfig>::Challenge, <SC as StarkGenericConfig>::Challenger>>::ProverData: Freeze,
impl<SC> RefUnwindSafe for ProverOnlyData<SC>where
<<SC as StarkGenericConfig>::Pcs as Pcs<<SC as StarkGenericConfig>::Challenge, <SC as StarkGenericConfig>::Challenger>>::ProverData: RefUnwindSafe,
impl<SC> Send for ProverOnlyData<SC>where
<<SC as StarkGenericConfig>::Pcs as Pcs<<SC as StarkGenericConfig>::Challenge, <SC as StarkGenericConfig>::Challenger>>::ProverData: Send,
impl<SC> Sync for ProverOnlyData<SC>where
<<SC as StarkGenericConfig>::Pcs as Pcs<<SC as StarkGenericConfig>::Challenge, <SC as StarkGenericConfig>::Challenger>>::ProverData: Sync,
impl<SC> Unpin for ProverOnlyData<SC>where
<<SC as StarkGenericConfig>::Pcs as Pcs<<SC as StarkGenericConfig>::Challenge, <SC as StarkGenericConfig>::Challenger>>::ProverData: Unpin,
impl<SC> UnsafeUnpin for ProverOnlyData<SC>where
<<SC as StarkGenericConfig>::Pcs as Pcs<<SC as StarkGenericConfig>::Challenge, <SC as StarkGenericConfig>::Challenger>>::ProverData: UnsafeUnpin,
impl<SC> UnwindSafe for ProverOnlyData<SC>where
<<SC as StarkGenericConfig>::Pcs as Pcs<<SC as StarkGenericConfig>::Challenge, <SC as StarkGenericConfig>::Challenger>>::ProverData: UnwindSafe,
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