pub struct TraceRow<'a, Expr> {
pub binary_poly: &'a [Expr],
pub arbitrary_poly: &'a [Expr],
pub int: &'a [Expr],
}Expand description
A view on a row of the trace. Contains references to cells of the trace of all types lying in the same trace row.
Fields§
§binary_poly: &'a [Expr]§arbitrary_poly: &'a [Expr]§int: &'a [Expr]Implementations§
Source§impl<'a, Expr> TraceRow<'a, Expr>
impl<'a, Expr> TraceRow<'a, Expr>
Sourcepub fn from_slice_with_layout(row: &'a [Expr], layout: &ColumnLayout) -> Self
pub fn from_slice_with_layout(row: &'a [Expr], layout: &ColumnLayout) -> Self
Given a slice that represents a raw row of the trace,
creates a TraceRow from it.
Subdivides the slice according to the given column layout.
Trait Implementations§
impl<'a, Expr: Copy> Copy for TraceRow<'a, Expr>
Auto Trait Implementations§
impl<'a, Expr> Freeze for TraceRow<'a, Expr>
impl<'a, Expr> RefUnwindSafe for TraceRow<'a, Expr>where
Expr: RefUnwindSafe,
impl<'a, Expr> Send for TraceRow<'a, Expr>where
Expr: Sync,
impl<'a, Expr> Sync for TraceRow<'a, Expr>where
Expr: Sync,
impl<'a, Expr> Unpin for TraceRow<'a, Expr>
impl<'a, Expr> UnsafeUnpin for TraceRow<'a, Expr>
impl<'a, Expr> UnwindSafe for TraceRow<'a, Expr>where
Expr: RefUnwindSafe,
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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