#[repr(usize)]pub enum JumpStackBaseTableColumn {
CLK = 0,
CI = 1,
JSP = 2,
JSO = 3,
JSD = 4,
}Variants§
Trait Implementations§
source§impl Clone for JumpStackBaseTableColumn
impl Clone for JumpStackBaseTableColumn
source§fn clone(&self) -> JumpStackBaseTableColumn
fn clone(&self) -> JumpStackBaseTableColumn
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 JumpStackBaseTableColumn
impl Debug for JumpStackBaseTableColumn
source§impl Display for JumpStackBaseTableColumn
impl Display for JumpStackBaseTableColumn
source§impl Hash for JumpStackBaseTableColumn
impl Hash for JumpStackBaseTableColumn
source§impl MasterBaseTableColumn for JumpStackBaseTableColumn
impl MasterBaseTableColumn for JumpStackBaseTableColumn
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 JumpStackBaseTableColumn
impl PartialEq for JumpStackBaseTableColumn
source§fn eq(&self, other: &JumpStackBaseTableColumn) -> bool
fn eq(&self, other: &JumpStackBaseTableColumn) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for JumpStackBaseTableColumn
impl Eq for JumpStackBaseTableColumn
impl StructuralPartialEq for JumpStackBaseTableColumn
Auto Trait Implementations§
impl Freeze for JumpStackBaseTableColumn
impl RefUnwindSafe for JumpStackBaseTableColumn
impl Send for JumpStackBaseTableColumn
impl Sync for JumpStackBaseTableColumn
impl Unpin for JumpStackBaseTableColumn
impl UnwindSafe for JumpStackBaseTableColumn
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