pub struct LookupTable<F> {
    pub id: i32,
    pub data: Vec<Vec<F>>,
}Expand description
A table of values that can be used for a lookup, along with the ID for the table.
Fields§
§id: i32§data: Vec<Vec<F>>Implementations§
Source§impl<F> LookupTable<F>where
    F: FftField,
 
impl<F> LookupTable<F>where
    F: FftField,
Trait Implementations§
Source§impl<F: Clone> Clone for LookupTable<F>
 
impl<F: Clone> Clone for LookupTable<F>
Source§fn clone(&self) -> LookupTable<F>
 
fn clone(&self) -> LookupTable<F>
Returns a duplicate 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<F: Debug> Debug for LookupTable<F>
 
impl<F: Debug> Debug for LookupTable<F>
Source§impl<F, CamlF> From<CamlLookupTable<CamlF>> for LookupTable<F>where
    F: PrimeField,
    CamlF: Into<F>,
 
impl<F, CamlF> From<CamlLookupTable<CamlF>> for LookupTable<F>where
    F: PrimeField,
    CamlF: Into<F>,
Source§fn from(caml_lt: CamlLookupTable<CamlF>) -> Self
 
fn from(caml_lt: CamlLookupTable<CamlF>) -> Self
Converts to this type from the input type.
Source§impl<F, CamlF> From<LookupTable<F>> for CamlLookupTable<CamlF>where
    F: PrimeField,
    CamlF: From<F>,
 
impl<F, CamlF> From<LookupTable<F>> for CamlLookupTable<CamlF>where
    F: PrimeField,
    CamlF: From<F>,
Source§fn from(lt: LookupTable<F>) -> Self
 
fn from(lt: LookupTable<F>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<F> Freeze for LookupTable<F>
impl<F> RefUnwindSafe for LookupTable<F>where
    F: RefUnwindSafe,
impl<F> Send for LookupTable<F>where
    F: Send,
impl<F> Sync for LookupTable<F>where
    F: Sync,
impl<F> Unpin for LookupTable<F>where
    F: Unpin,
impl<F> UnwindSafe for LookupTable<F>where
    F: 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