pub struct RuntimeTableSpec {
    pub id: i32,
    pub len: usize,
}Expand description
The specification of a runtime table.
Fields§
§id: i32The table ID.
len: usizeThe 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 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 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 Freeze for RuntimeTableSpec
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