Struct kimchi::circuits::lookup::runtime_tables::RuntimeTableSpec
source · pub struct RuntimeTableSpec {
pub id: i32,
pub len: usize,
}
Expand description
The specification of a runtime table.
Fields§
§id: i32
The table ID.
len: usize
The number of entries contained in the runtime table.
Trait Implementations§
source§impl Clone for RuntimeTableSpec
impl Clone for RuntimeTableSpec
source§fn clone(&self) -> RuntimeTableSpec
fn clone(&self) -> RuntimeTableSpec
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 Debug for RuntimeTableSpec
impl Debug for RuntimeTableSpec
source§impl<'de> Deserialize<'de> for RuntimeTableSpec
impl<'de> Deserialize<'de> for RuntimeTableSpec
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl From<CamlRuntimeTableSpec> for RuntimeTableSpec
impl From<CamlRuntimeTableSpec> for RuntimeTableSpec
source§fn from(caml_rt_spec: CamlRuntimeTableSpec) -> Self
fn from(caml_rt_spec: CamlRuntimeTableSpec) -> Self
Converts to this type from the input type.
source§impl<F> From<RuntimeTableCfg<F>> for RuntimeTableSpec
impl<F> From<RuntimeTableCfg<F>> for RuntimeTableSpec
source§fn from(rt_cfg: RuntimeTableCfg<F>) -> Self
fn from(rt_cfg: RuntimeTableCfg<F>) -> Self
Converts to this type from the input type.
source§impl From<RuntimeTableSpec> for CamlRuntimeTableSpec
impl From<RuntimeTableSpec> for CamlRuntimeTableSpec
source§fn from(rt_spec: RuntimeTableSpec) -> Self
fn from(rt_spec: RuntimeTableSpec) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl RefUnwindSafe for RuntimeTableSpec
impl Send for RuntimeTableSpec
impl Sync for RuntimeTableSpec
impl Unpin for RuntimeTableSpec
impl UnwindSafe for RuntimeTableSpec
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