pub struct StarkInstance<'a, SC: SGC, A> {
pub air: &'a A,
pub trace: &'a RowMajorMatrix<Val<SC>>,
pub public_values: Vec<Val<SC>>,
pub lookups: Vec<Lookup<Val<SC>>>,
}Fields§
§air: &'a A§trace: &'a RowMajorMatrix<Val<SC>>§public_values: Vec<Val<SC>>§lookups: Vec<Lookup<Val<SC>>>Implementations§
Source§impl<'a, SC: SGC, A> StarkInstance<'a, SC, A>
impl<'a, SC: SGC, A> StarkInstance<'a, SC, A>
pub fn new_multiple( airs: &'a [A], traces: &'a [&'a RowMajorMatrix<Val<SC>>], public_values: &[Vec<Val<SC>>], common_data: &CommonData<SC>, ) -> Vec<Self>
Trait Implementations§
Auto Trait Implementations§
impl<'a, SC, A> Freeze for StarkInstance<'a, SC, A>
impl<'a, SC, A> RefUnwindSafe for StarkInstance<'a, SC, A>where
A: RefUnwindSafe,
<<<SC as StarkGenericConfig>::Pcs as Pcs<<SC as StarkGenericConfig>::Challenge, <SC as StarkGenericConfig>::Challenger>>::Domain as PolynomialSpace>::Val: RefUnwindSafe,
impl<'a, SC, A> Send for StarkInstance<'a, SC, A>where
A: Sync,
impl<'a, SC, A> Sync for StarkInstance<'a, SC, A>where
A: Sync,
impl<'a, SC, A> Unpin for StarkInstance<'a, SC, A>where
<<<SC as StarkGenericConfig>::Pcs as Pcs<<SC as StarkGenericConfig>::Challenge, <SC as StarkGenericConfig>::Challenger>>::Domain as PolynomialSpace>::Val: Unpin,
impl<'a, SC, A> UnsafeUnpin for StarkInstance<'a, SC, A>
impl<'a, SC, A> UnwindSafe for StarkInstance<'a, SC, A>where
A: RefUnwindSafe,
<<<SC as StarkGenericConfig>::Pcs as Pcs<<SC as StarkGenericConfig>::Challenge, <SC as StarkGenericConfig>::Challenger>>::Domain as PolynomialSpace>::Val: RefUnwindSafe + 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