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 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 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> Freeze for RuntimeTable<F>
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