Enum triton_vm::table::table_column::RamExtTableColumn
source · #[repr(usize)]pub enum RamExtTableColumn {
RunningProductOfRAMP = 0,
FormalDerivative = 1,
BezoutCoefficient0 = 2,
BezoutCoefficient1 = 3,
RunningProductPermArg = 4,
ClockJumpDifferenceLookupClientLogDerivative = 5,
}Variants§
RunningProductOfRAMP = 0
FormalDerivative = 1
BezoutCoefficient0 = 2
BezoutCoefficient1 = 3
RunningProductPermArg = 4
ClockJumpDifferenceLookupClientLogDerivative = 5
The (running sum of the) logarithmic derivative for the clock jump difference Lookup Argument with the Processor Table.
Trait Implementations§
source§impl Clone for RamExtTableColumn
impl Clone for RamExtTableColumn
source§fn clone(&self) -> RamExtTableColumn
fn clone(&self) -> RamExtTableColumn
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 RamExtTableColumn
impl Debug for RamExtTableColumn
source§impl Display for RamExtTableColumn
impl Display for RamExtTableColumn
source§impl Hash for RamExtTableColumn
impl Hash for RamExtTableColumn
source§impl IntoEnumIterator for RamExtTableColumn
impl IntoEnumIterator for RamExtTableColumn
type Iterator = RamExtTableColumnIter
fn iter() -> RamExtTableColumnIter ⓘ
source§impl MasterExtTableColumn for RamExtTableColumn
impl MasterExtTableColumn for RamExtTableColumn
source§fn ext_table_index(&self) -> usize
fn ext_table_index(&self) -> usize
The index of the column in the “local” extension table, i.e., not the master extension
table.
source§fn master_ext_table_index(&self) -> usize
fn master_ext_table_index(&self) -> usize
The index of the column in the master extension table.
source§impl PartialEq for RamExtTableColumn
impl PartialEq for RamExtTableColumn
source§fn eq(&self, other: &RamExtTableColumn) -> bool
fn eq(&self, other: &RamExtTableColumn) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for RamExtTableColumn
impl Eq for RamExtTableColumn
impl StructuralPartialEq for RamExtTableColumn
Auto Trait Implementations§
impl Freeze for RamExtTableColumn
impl RefUnwindSafe for RamExtTableColumn
impl Send for RamExtTableColumn
impl Sync for RamExtTableColumn
impl Unpin for RamExtTableColumn
impl UnwindSafe for RamExtTableColumn
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> 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