#[repr(usize)]pub enum RamMainColumn {
CLK = 0,
InstructionType = 1,
RamPointer = 2,
RamValue = 3,
InverseOfRampDifference = 4,
BezoutCoefficientPolynomialCoefficient0 = 5,
BezoutCoefficientPolynomialCoefficient1 = 6,
}
Variants§
CLK = 0
InstructionType = 1
Is INSTRUCTION_TYPE_READ
for instruction read_mem
and INSTRUCTION_TYPE_WRITE
for instruction write_mem
. For padding rows, this is set to PADDING_INDICATOR
.
RamPointer = 2
RamValue = 3
InverseOfRampDifference = 4
BezoutCoefficientPolynomialCoefficient0 = 5
BezoutCoefficientPolynomialCoefficient1 = 6
Trait Implementations§
Source§impl Clone for RamMainColumn
impl Clone for RamMainColumn
Source§fn clone(&self) -> RamMainColumn
fn clone(&self) -> RamMainColumn
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 RamMainColumn
impl Debug for RamMainColumn
Source§impl Display for RamMainColumn
impl Display for RamMainColumn
Source§impl Hash for RamMainColumn
impl Hash for RamMainColumn
Source§impl IntoEnumIterator for RamMainColumn
impl IntoEnumIterator for RamMainColumn
type Iterator = RamMainColumnIter
fn iter() -> RamMainColumnIter ⓘ
Source§impl MasterMainColumn for RamMainColumn
impl MasterMainColumn for RamMainColumn
Source§fn main_index(&self) -> usize
fn main_index(&self) -> usize
The index of the column in the “local” main table, _i.e., not the master base table.
Source§fn master_main_index(&self) -> usize
fn master_main_index(&self) -> usize
The index of the column in the master main table.
Source§impl PartialEq for RamMainColumn
impl PartialEq for RamMainColumn
impl Copy for RamMainColumn
impl Eq for RamMainColumn
impl StructuralPartialEq for RamMainColumn
Auto Trait Implementations§
impl Freeze for RamMainColumn
impl RefUnwindSafe for RamMainColumn
impl Send for RamMainColumn
impl Sync for RamMainColumn
impl Unpin for RamMainColumn
impl UnwindSafe for RamMainColumn
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