#[repr(usize)]pub enum ProcessorMainColumn {
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 ProcessorMainColumn
impl Clone for ProcessorMainColumn
Source§fn clone(&self) -> ProcessorMainColumn
fn clone(&self) -> ProcessorMainColumn
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 ProcessorMainColumn
impl Debug for ProcessorMainColumn
Source§impl Display for ProcessorMainColumn
impl Display for ProcessorMainColumn
Source§impl Hash for ProcessorMainColumn
impl Hash for ProcessorMainColumn
Source§impl MasterMainColumn for ProcessorMainColumn
impl MasterMainColumn for ProcessorMainColumn
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 ProcessorMainColumn
impl PartialEq for ProcessorMainColumn
impl Copy for ProcessorMainColumn
impl Eq for ProcessorMainColumn
impl StructuralPartialEq for ProcessorMainColumn
Auto Trait Implementations§
impl Freeze for ProcessorMainColumn
impl RefUnwindSafe for ProcessorMainColumn
impl Send for ProcessorMainColumn
impl Sync for ProcessorMainColumn
impl Unpin for ProcessorMainColumn
impl UnwindSafe for ProcessorMainColumn
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