#[repr(usize)]pub enum OpStackAuxColumn {
RunningProductPermArg = 0,
ClockJumpDifferenceLookupClientLogDerivative = 1,
}
Variants§
RunningProductPermArg = 0
ClockJumpDifferenceLookupClientLogDerivative = 1
The (running sum of the) logarithmic derivative for the clock jump difference Lookup Argument with the Processor Table.
Trait Implementations§
Source§impl Clone for OpStackAuxColumn
impl Clone for OpStackAuxColumn
Source§fn clone(&self) -> OpStackAuxColumn
fn clone(&self) -> OpStackAuxColumn
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 OpStackAuxColumn
impl Debug for OpStackAuxColumn
Source§impl Display for OpStackAuxColumn
impl Display for OpStackAuxColumn
Source§impl Hash for OpStackAuxColumn
impl Hash for OpStackAuxColumn
Source§impl IntoEnumIterator for OpStackAuxColumn
impl IntoEnumIterator for OpStackAuxColumn
type Iterator = OpStackAuxColumnIter
fn iter() -> OpStackAuxColumnIter ⓘ
Source§impl MasterAuxColumn for OpStackAuxColumn
impl MasterAuxColumn for OpStackAuxColumn
Source§impl PartialEq for OpStackAuxColumn
impl PartialEq for OpStackAuxColumn
impl Copy for OpStackAuxColumn
impl Eq for OpStackAuxColumn
impl StructuralPartialEq for OpStackAuxColumn
Auto Trait Implementations§
impl Freeze for OpStackAuxColumn
impl RefUnwindSafe for OpStackAuxColumn
impl Send for OpStackAuxColumn
impl Sync for OpStackAuxColumn
impl Unpin for OpStackAuxColumn
impl UnwindSafe for OpStackAuxColumn
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