Struct kimchi::circuits::lookup::runtime_tables::RuntimeTable
source · pub struct RuntimeTable<F> {
pub id: i32,
pub data: Vec<F>,
}
Expand description
A runtime table. Runtime tables must match the configuration
that was specified in RuntimeTableCfg
.
Fields§
§id: i32
The table id.
data: Vec<F>
A single column.
Trait Implementations§
source§impl<F: Clone> Clone for RuntimeTable<F>
impl<F: Clone> Clone for RuntimeTable<F>
source§fn clone(&self) -> RuntimeTable<F>
fn clone(&self) -> RuntimeTable<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 RuntimeTable<F>
impl<F: Debug> Debug for RuntimeTable<F>
source§impl<F, CamlF> From<CamlRuntimeTable<CamlF>> for RuntimeTable<F>where
F: PrimeField,
CamlF: Into<F>,
impl<F, CamlF> From<CamlRuntimeTable<CamlF>> for RuntimeTable<F>where F: PrimeField, CamlF: Into<F>,
source§fn from(caml_rt: CamlRuntimeTable<CamlF>) -> Self
fn from(caml_rt: CamlRuntimeTable<CamlF>) -> Self
Converts to this type from the input type.
source§impl<F, CamlF> From<RuntimeTable<F>> for CamlRuntimeTable<CamlF>where
F: PrimeField,
CamlF: From<F>,
impl<F, CamlF> From<RuntimeTable<F>> for CamlRuntimeTable<CamlF>where F: PrimeField, CamlF: From<F>,
source§fn from(rt: RuntimeTable<F>) -> Self
fn from(rt: RuntimeTable<F>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<F> RefUnwindSafe for RuntimeTable<F>where F: RefUnwindSafe,
impl<F> Send for RuntimeTable<F>where F: Send,
impl<F> Sync for RuntimeTable<F>where F: Sync,
impl<F> Unpin for RuntimeTable<F>where F: Unpin,
impl<F> UnwindSafe for RuntimeTable<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