#[repr(usize)]pub enum ProcessorExtTableColumn {
InputTableEvalArg = 0,
OutputTableEvalArg = 1,
InstructionLookupClientLogDerivative = 2,
OpStackTablePermArg = 3,
RamTablePermArg = 4,
JumpStackTablePermArg = 5,
HashInputEvalArg = 6,
HashDigestEvalArg = 7,
SpongeEvalArg = 8,
U32LookupClientLogDerivative = 9,
ClockJumpDifferenceLookupServerLogDerivative = 10,
}Variants§
InputTableEvalArg = 0
OutputTableEvalArg = 1
InstructionLookupClientLogDerivative = 2
OpStackTablePermArg = 3
RamTablePermArg = 4
JumpStackTablePermArg = 5
HashInputEvalArg = 6
For copying the hash function’s input to the hash coprocessor.
HashDigestEvalArg = 7
For copying the hash digest from the hash coprocessor.
SpongeEvalArg = 8
For copying the RATE next to-be-absorbed to the hash coprocessor and the RATE squeezed elements from the hash coprocessor, depending on the executed instruction.
U32LookupClientLogDerivative = 9
The (running sum of the) logarithmic derivative for the Lookup Argument with the U32 Table.
ClockJumpDifferenceLookupServerLogDerivative = 10
The (running sum of the) logarithmic derivative for the clock jump difference Lookup Argument with the memory-like tables.
Trait Implementations§
source§impl Clone for ProcessorExtTableColumn
impl Clone for ProcessorExtTableColumn
source§fn clone(&self) -> ProcessorExtTableColumn
fn clone(&self) -> ProcessorExtTableColumn
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 ProcessorExtTableColumn
impl Debug for ProcessorExtTableColumn
source§impl Display for ProcessorExtTableColumn
impl Display for ProcessorExtTableColumn
source§impl Hash for ProcessorExtTableColumn
impl Hash for ProcessorExtTableColumn
source§impl MasterExtTableColumn for ProcessorExtTableColumn
impl MasterExtTableColumn for ProcessorExtTableColumn
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 ProcessorExtTableColumn
impl PartialEq for ProcessorExtTableColumn
source§fn eq(&self, other: &ProcessorExtTableColumn) -> bool
fn eq(&self, other: &ProcessorExtTableColumn) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for ProcessorExtTableColumn
impl Eq for ProcessorExtTableColumn
impl StructuralPartialEq for ProcessorExtTableColumn
Auto Trait Implementations§
impl Freeze for ProcessorExtTableColumn
impl RefUnwindSafe for ProcessorExtTableColumn
impl Send for ProcessorExtTableColumn
impl Sync for ProcessorExtTableColumn
impl Unpin for ProcessorExtTableColumn
impl UnwindSafe for ProcessorExtTableColumn
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