#[repr(usize)]pub enum LookupAuxColumn {
CascadeTableServerLogDerivative = 0,
PublicEvaluationArgument = 1,
}
Variants§
CascadeTableServerLogDerivative = 0
The (running sum of the) logarithmic derivative for the Lookup Argument with the Cascade
Table. In every row, accumulates the summand LookupMultiplicity / Combo
where Combo
is
the verifier-weighted combination of LookIn
and LookOut
.
PublicEvaluationArgument = 1
The running sum for the public evaluation argument of the Lookup Table.
In every row, accumulates LookOut
.
Trait Implementations§
Source§impl Clone for LookupAuxColumn
impl Clone for LookupAuxColumn
Source§fn clone(&self) -> LookupAuxColumn
fn clone(&self) -> LookupAuxColumn
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 Debug for LookupAuxColumn
impl Debug for LookupAuxColumn
Source§impl Display for LookupAuxColumn
impl Display for LookupAuxColumn
Source§impl Hash for LookupAuxColumn
impl Hash for LookupAuxColumn
Source§impl IntoEnumIterator for LookupAuxColumn
impl IntoEnumIterator for LookupAuxColumn
type Iterator = LookupAuxColumnIter
fn iter() -> LookupAuxColumnIter ⓘ
Source§impl MasterAuxColumn for LookupAuxColumn
impl MasterAuxColumn for LookupAuxColumn
Source§impl PartialEq for LookupAuxColumn
impl PartialEq for LookupAuxColumn
impl Copy for LookupAuxColumn
impl Eq for LookupAuxColumn
impl StructuralPartialEq for LookupAuxColumn
Auto Trait Implementations§
impl Freeze for LookupAuxColumn
impl RefUnwindSafe for LookupAuxColumn
impl Send for LookupAuxColumn
impl Sync for LookupAuxColumn
impl Unpin for LookupAuxColumn
impl UnwindSafe for LookupAuxColumn
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> 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