enum LookupTable {
Sparse(SparseTable),
Dense(DenseTable),
}
Expand description
This enum represents the different type of lookup tables and their offsets.
See TransitionLayout
for more details.
Variants§
Sparse(SparseTable)
Dense(DenseTable)
Implementations§
Source§impl LookupTable
impl LookupTable
fn unwrap_sparse(self) -> SparseTable
fn unwrap_dense(self) -> DenseTable
Trait Implementations§
Source§impl Clone for LookupTable
impl Clone for LookupTable
Source§fn clone(&self) -> LookupTable
fn clone(&self) -> LookupTable
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 LookupTable
impl Debug for LookupTable
impl Copy for LookupTable
Auto Trait Implementations§
impl Freeze for LookupTable
impl RefUnwindSafe for LookupTable
impl Send for LookupTable
impl Sync for LookupTable
impl Unpin for LookupTable
impl UnwindSafe for LookupTable
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