pub struct OpenedValues<Challenge> {
pub trace_local: Vec<Challenge>,
pub trace_next: Option<Vec<Challenge>>,
pub preprocessed_local: Option<Vec<Challenge>>,
pub preprocessed_next: Option<Vec<Challenge>>,
pub quotient_chunks: Vec<Vec<Challenge>>,
pub random: Option<Vec<Challenge>>,
}Fields§
§trace_local: Vec<Challenge>§trace_next: Option<Vec<Challenge>>Main trace evaluated at g * zeta.
None when the AIR has no transition constraints and does not access the next row.
preprocessed_local: Option<Vec<Challenge>>§preprocessed_next: Option<Vec<Challenge>>§quotient_chunks: Vec<Vec<Challenge>>§random: Option<Vec<Challenge>>Trait Implementations§
Source§impl<Challenge> Debug for OpenedValues<Challenge>where
Challenge: Debug,
impl<Challenge> Debug for OpenedValues<Challenge>where
Challenge: Debug,
Source§impl<'de, Challenge> Deserialize<'de> for OpenedValues<Challenge>where
Challenge: Deserialize<'de>,
impl<'de, Challenge> Deserialize<'de> for OpenedValues<Challenge>where
Challenge: Deserialize<'de>,
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<OpenedValues<Challenge>, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<OpenedValues<Challenge>, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl<Challenge> Serialize for OpenedValues<Challenge>where
Challenge: Serialize,
impl<Challenge> Serialize for OpenedValues<Challenge>where
Challenge: Serialize,
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl<Challenge> Freeze for OpenedValues<Challenge>
impl<Challenge> RefUnwindSafe for OpenedValues<Challenge>where
Challenge: RefUnwindSafe,
impl<Challenge> Send for OpenedValues<Challenge>where
Challenge: Send,
impl<Challenge> Sync for OpenedValues<Challenge>where
Challenge: Sync,
impl<Challenge> Unpin for OpenedValues<Challenge>where
Challenge: Unpin,
impl<Challenge> UnsafeUnpin for OpenedValues<Challenge>
impl<Challenge> UnwindSafe for OpenedValues<Challenge>where
Challenge: 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