pub struct ProofInput<SC: StarkGenericConfig> {
pub per_air: Vec<(usize, AirProofInput<SC>)>,
}
Expand description
Proof input
Fields§
§per_air: Vec<(usize, AirProofInput<SC>)>
(AIR id, AIR input)
Implementations§
Source§impl<SC: StarkGenericConfig> ProofInput<SC>
impl<SC: StarkGenericConfig> ProofInput<SC>
pub fn new(per_air: Vec<(usize, AirProofInput<SC>)>) -> Self
pub fn into_air_proof_input_vec(self) -> Vec<AirProofInput<SC>>
Source§impl<SC: StarkGenericConfig> ProofInput<SC>
impl<SC: StarkGenericConfig> ProofInput<SC>
Auto Trait Implementations§
impl<SC> Freeze for ProofInput<SC>
impl<SC> !RefUnwindSafe for ProofInput<SC>
impl<SC> Send for ProofInput<SC>
impl<SC> Sync for ProofInput<SC>
impl<SC> Unpin for ProofInput<SC>where
<<SC as StarkGenericConfig>::Pcs as Pcs<<SC as StarkGenericConfig>::Challenge, <SC as StarkGenericConfig>::Challenger>>::Commitment: Unpin,
<<<SC as StarkGenericConfig>::Pcs as Pcs<<SC as StarkGenericConfig>::Challenge, <SC as StarkGenericConfig>::Challenger>>::Domain as PolynomialSpace>::Val: Unpin,
impl<SC> !UnwindSafe for ProofInput<SC>
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