pub struct TableSegment {
    pub table_index: TableIndex,
    pub offset: ConstExpr,
    pub elements: TableSegmentElements,
}Expand description
A WebAssembly table initializer segment.
Fields§
§table_index: TableIndexThe index of a table to initialize.
offset: ConstExprThe base offset to start this segment at.
elements: TableSegmentElementsThe values to write into the table elements.
Trait Implementations§
Source§impl Clone for TableSegment
 
impl Clone for TableSegment
Source§fn clone(&self) -> TableSegment
 
fn clone(&self) -> TableSegment
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 TableSegment
 
impl Debug for TableSegment
Source§impl<'de> Deserialize<'de> for TableSegment
 
impl<'de> Deserialize<'de> for TableSegment
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
Auto Trait Implementations§
impl Freeze for TableSegment
impl RefUnwindSafe for TableSegment
impl Send for TableSegment
impl Sync for TableSegment
impl Unpin for TableSegment
impl UnwindSafe for TableSegment
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