Struct p3_uni_stark::SymbolicVariable
source · pub struct SymbolicVariable<F: Field> {
pub entry: Entry,
pub index: usize,
/* private fields */
}Expand description
A variable within the evaluation window, i.e. a column in either the local or next row.
Fields§
§entry: Entry§index: usizeImplementations§
Trait Implementations§
source§impl<F: Field> Add<F> for SymbolicVariable<F>
impl<F: Field> Add<F> for SymbolicVariable<F>
source§impl<F: Field> Add<SymbolicExpression<F>> for SymbolicVariable<F>
impl<F: Field> Add<SymbolicExpression<F>> for SymbolicVariable<F>
§type Output = SymbolicExpression<F>
type Output = SymbolicExpression<F>
The resulting type after applying the
+ operator.source§impl<F: Field> Add<SymbolicVariable<F>> for SymbolicExpression<F>
impl<F: Field> Add<SymbolicVariable<F>> for SymbolicExpression<F>
§type Output = SymbolicExpression<F>
type Output = SymbolicExpression<F>
The resulting type after applying the
+ operator.source§impl<F: Field> Add for SymbolicVariable<F>
impl<F: Field> Add for SymbolicVariable<F>
source§impl<F: Clone + Field> Clone for SymbolicVariable<F>
impl<F: Clone + Field> Clone for SymbolicVariable<F>
source§fn clone(&self) -> SymbolicVariable<F>
fn clone(&self) -> SymbolicVariable<F>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl<F: Field> From<SymbolicVariable<F>> for SymbolicExpression<F>
impl<F: Field> From<SymbolicVariable<F>> for SymbolicExpression<F>
source§fn from(value: SymbolicVariable<F>) -> Self
fn from(value: SymbolicVariable<F>) -> Self
Converts to this type from the input type.
source§impl<F: Field> Mul<F> for SymbolicVariable<F>
impl<F: Field> Mul<F> for SymbolicVariable<F>
source§impl<F: Field> Mul<SymbolicExpression<F>> for SymbolicVariable<F>
impl<F: Field> Mul<SymbolicExpression<F>> for SymbolicVariable<F>
§type Output = SymbolicExpression<F>
type Output = SymbolicExpression<F>
The resulting type after applying the
* operator.source§impl<F: Field> Mul<SymbolicVariable<F>> for SymbolicExpression<F>
impl<F: Field> Mul<SymbolicVariable<F>> for SymbolicExpression<F>
§type Output = SymbolicExpression<F>
type Output = SymbolicExpression<F>
The resulting type after applying the
* operator.source§impl<F: Field> Mul for SymbolicVariable<F>
impl<F: Field> Mul for SymbolicVariable<F>
source§impl<F: Field> Sub<F> for SymbolicVariable<F>
impl<F: Field> Sub<F> for SymbolicVariable<F>
source§impl<F: Field> Sub<SymbolicExpression<F>> for SymbolicVariable<F>
impl<F: Field> Sub<SymbolicExpression<F>> for SymbolicVariable<F>
§type Output = SymbolicExpression<F>
type Output = SymbolicExpression<F>
The resulting type after applying the
- operator.source§impl<F: Field> Sub<SymbolicVariable<F>> for SymbolicExpression<F>
impl<F: Field> Sub<SymbolicVariable<F>> for SymbolicExpression<F>
§type Output = SymbolicExpression<F>
type Output = SymbolicExpression<F>
The resulting type after applying the
- operator.source§impl<F: Field> Sub for SymbolicVariable<F>
impl<F: Field> Sub for SymbolicVariable<F>
impl<F: Copy + Field> Copy for SymbolicVariable<F>
Auto Trait Implementations§
impl<F> Freeze for SymbolicVariable<F>
impl<F> RefUnwindSafe for SymbolicVariable<F>where
F: RefUnwindSafe,
impl<F> Send for SymbolicVariable<F>
impl<F> Sync for SymbolicVariable<F>
impl<F> Unpin for SymbolicVariable<F>where
F: Unpin,
impl<F> UnwindSafe for SymbolicVariable<F>where
F: 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> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)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