#[repr(usize)]pub enum CascadeBaseTableColumn {
IsPadding = 0,
LookInHi = 1,
LookInLo = 2,
LookOutHi = 3,
LookOutLo = 4,
LookupMultiplicity = 5,
}Variants§
IsPadding = 0
Indicator for padding rows.
LookInHi = 1
The more significant bits of the lookup input.
LookInLo = 2
The less significant bits of the lookup input.
LookOutHi = 3
The more significant bits of the lookup output.
LookOutLo = 4
The less significant bits of the lookup output.
LookupMultiplicity = 5
The number of times the S-Box is evaluated, i.e., the value is looked up.
Trait Implementations§
source§impl Clone for CascadeBaseTableColumn
impl Clone for CascadeBaseTableColumn
source§fn clone(&self) -> CascadeBaseTableColumn
fn clone(&self) -> CascadeBaseTableColumn
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 CascadeBaseTableColumn
impl Debug for CascadeBaseTableColumn
source§impl Display for CascadeBaseTableColumn
impl Display for CascadeBaseTableColumn
source§impl Hash for CascadeBaseTableColumn
impl Hash for CascadeBaseTableColumn
source§impl MasterBaseTableColumn for CascadeBaseTableColumn
impl MasterBaseTableColumn for CascadeBaseTableColumn
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 CascadeBaseTableColumn
impl PartialEq for CascadeBaseTableColumn
source§fn eq(&self, other: &CascadeBaseTableColumn) -> bool
fn eq(&self, other: &CascadeBaseTableColumn) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for CascadeBaseTableColumn
impl Eq for CascadeBaseTableColumn
impl StructuralPartialEq for CascadeBaseTableColumn
Auto Trait Implementations§
impl Freeze for CascadeBaseTableColumn
impl RefUnwindSafe for CascadeBaseTableColumn
impl Send for CascadeBaseTableColumn
impl Sync for CascadeBaseTableColumn
impl Unpin for CascadeBaseTableColumn
impl UnwindSafe for CascadeBaseTableColumn
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