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 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<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> 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