Struct kimchi_msm::logup::LookupTable
source · pub struct LookupTable<F, ID: LookupTableID> {
pub table_id: ID,
pub entries: Vec<Vec<F>>,
}
Expand description
A table of values that can be used for a lookup, along with the ID for the table.
Fields§
§table_id: ID
Table ID corresponding to this table
entries: Vec<Vec<F>>
Vector of values inside each entry of the table
Trait Implementations§
source§impl<F: Clone, ID: Clone + LookupTableID> Clone for LookupTable<F, ID>
impl<F: Clone, ID: Clone + LookupTableID> Clone for LookupTable<F, ID>
source§fn clone(&self) -> LookupTable<F, ID>
fn clone(&self) -> LookupTable<F, ID>
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 moreAuto Trait Implementations§
impl<F, ID> RefUnwindSafe for LookupTable<F, ID>where F: RefUnwindSafe, ID: RefUnwindSafe,
impl<F, ID> Send for LookupTable<F, ID>where F: Send,
impl<F, ID> Sync for LookupTable<F, ID>where F: Sync,
impl<F, ID> Unpin for LookupTable<F, ID>where F: Unpin, ID: Unpin,
impl<F, ID> UnwindSafe for LookupTable<F, ID>where F: UnwindSafe, ID: UnwindSafe,
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