pub struct SymbolicVariable<F> {
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: usize
Implementations§
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>
Source§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>
Source§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> Clone for SymbolicVariable<F>
impl<F: Clone> 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: Debug> Debug for SymbolicVariable<F>
impl<F: Debug> Debug for SymbolicVariable<F>
Source§impl<'de, F> Deserialize<'de> for SymbolicVariable<F>
impl<'de, F> Deserialize<'de> for SymbolicVariable<F>
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§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: Hash> Hash for SymbolicVariable<F>
impl<F: Hash> Hash for SymbolicVariable<F>
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>
Source§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>
Source§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: PartialEq> PartialEq for SymbolicVariable<F>
impl<F: PartialEq> PartialEq for SymbolicVariable<F>
Source§impl<F> Serialize for SymbolicVariable<F>
impl<F> Serialize 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>
Source§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>
Source§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> Copy for SymbolicVariable<F>
impl<F: Eq> Eq for SymbolicVariable<F>
impl<F> StructuralPartialEq 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>where
F: Send,
impl<F> Sync for SymbolicVariable<F>where
F: Sync,
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: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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> 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