#[repr(usize)]pub enum U32MainColumn {
CopyFlag = 0,
Bits = 1,
BitsMinus33Inv = 2,
CI = 3,
LHS = 4,
LhsInv = 5,
RHS = 6,
RhsInv = 7,
Result = 8,
LookupMultiplicity = 9,
}
Variants§
CopyFlag = 0
Marks the beginning of an independent section within the U32 table.
Bits = 1
The number of bits that LHS and RHS have already been shifted by.
BitsMinus33Inv = 2
The inverse-or-zero of the difference between
- the first disallowed number of bits to shift LHS and RHS by, i.e., 33, and
- the number of bits that LHS and RHS have already been shifted by.
CI = 3
Current Instruction, the instruction the processor is currently executing.
LHS = 4
Left-hand side of the operation.
LhsInv = 5
The inverse-or-zero of LHS. Needed to check whether LHS
is unequal to 0.
RHS = 6
Right-hand side of the operation.
RhsInv = 7
The inverse-or-zero of RHS. Needed to check whether RHS
is unequal to 0.
Result = 8
The result (or intermediate result) of the instruction requested by the processor.
LookupMultiplicity = 9
The number of times the processor has executed the current instruction with the same arguments.
Trait Implementations§
Source§impl Clone for U32MainColumn
impl Clone for U32MainColumn
Source§fn clone(&self) -> U32MainColumn
fn clone(&self) -> U32MainColumn
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 U32MainColumn
impl Debug for U32MainColumn
Source§impl Display for U32MainColumn
impl Display for U32MainColumn
Source§impl Hash for U32MainColumn
impl Hash for U32MainColumn
Source§impl IntoEnumIterator for U32MainColumn
impl IntoEnumIterator for U32MainColumn
type Iterator = U32MainColumnIter
fn iter() -> U32MainColumnIter ⓘ
Source§impl MasterMainColumn for U32MainColumn
impl MasterMainColumn for U32MainColumn
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 U32MainColumn
impl PartialEq for U32MainColumn
impl Copy for U32MainColumn
impl Eq for U32MainColumn
impl StructuralPartialEq for U32MainColumn
Auto Trait Implementations§
impl Freeze for U32MainColumn
impl RefUnwindSafe for U32MainColumn
impl Send for U32MainColumn
impl Sync for U32MainColumn
impl Unpin for U32MainColumn
impl UnwindSafe for U32MainColumn
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