#[repr(usize)]pub enum ProcessorBaseTableColumn {
Show 39 variants
CLK = 0,
IsPadding = 1,
IP = 2,
CI = 3,
NIA = 4,
IB0 = 5,
IB1 = 6,
IB2 = 7,
IB3 = 8,
IB4 = 9,
IB5 = 10,
IB6 = 11,
JSP = 12,
JSO = 13,
JSD = 14,
ST0 = 15,
ST1 = 16,
ST2 = 17,
ST3 = 18,
ST4 = 19,
ST5 = 20,
ST6 = 21,
ST7 = 22,
ST8 = 23,
ST9 = 24,
ST10 = 25,
ST11 = 26,
ST12 = 27,
ST13 = 28,
ST14 = 29,
ST15 = 30,
OpStackPointer = 31,
HV0 = 32,
HV1 = 33,
HV2 = 34,
HV3 = 35,
HV4 = 36,
HV5 = 37,
ClockJumpDifferenceLookupMultiplicity = 38,
}Variants§
CLK = 0
IsPadding = 1
IP = 2
CI = 3
NIA = 4
IB0 = 5
IB1 = 6
IB2 = 7
IB3 = 8
IB4 = 9
IB5 = 10
IB6 = 11
JSP = 12
JSO = 13
JSD = 14
ST0 = 15
ST1 = 16
ST2 = 17
ST3 = 18
ST4 = 19
ST5 = 20
ST6 = 21
ST7 = 22
ST8 = 23
ST9 = 24
ST10 = 25
ST11 = 26
ST12 = 27
ST13 = 28
ST14 = 29
ST15 = 30
OpStackPointer = 31
HV0 = 32
HV1 = 33
HV2 = 34
HV3 = 35
HV4 = 36
HV5 = 37
ClockJumpDifferenceLookupMultiplicity = 38
The number of clock jump differences of magnitude CLK in all memory-like tables.
Trait Implementations§
source§impl Clone for ProcessorBaseTableColumn
impl Clone for ProcessorBaseTableColumn
source§fn clone(&self) -> ProcessorBaseTableColumn
fn clone(&self) -> ProcessorBaseTableColumn
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 ProcessorBaseTableColumn
impl Debug for ProcessorBaseTableColumn
source§impl Display for ProcessorBaseTableColumn
impl Display for ProcessorBaseTableColumn
source§impl Hash for ProcessorBaseTableColumn
impl Hash for ProcessorBaseTableColumn
source§impl MasterBaseTableColumn for ProcessorBaseTableColumn
impl MasterBaseTableColumn for ProcessorBaseTableColumn
source§fn base_table_index(&self) -> usize
fn base_table_index(&self) -> usize
The index of the column in the ”local“ base table, _i.e., not the master base table.
source§fn master_base_table_index(&self) -> usize
fn master_base_table_index(&self) -> usize
The index of the column in the master base table.
source§impl PartialEq for ProcessorBaseTableColumn
impl PartialEq for ProcessorBaseTableColumn
source§fn eq(&self, other: &ProcessorBaseTableColumn) -> bool
fn eq(&self, other: &ProcessorBaseTableColumn) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for ProcessorBaseTableColumn
impl Eq for ProcessorBaseTableColumn
impl StructuralPartialEq for ProcessorBaseTableColumn
Auto Trait Implementations§
impl Freeze for ProcessorBaseTableColumn
impl RefUnwindSafe for ProcessorBaseTableColumn
impl Send for ProcessorBaseTableColumn
impl Sync for ProcessorBaseTableColumn
impl Unpin for ProcessorBaseTableColumn
impl UnwindSafe for ProcessorBaseTableColumn
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