Struct wasmtime_environ::TableInitializer [−][src]
pub struct TableInitializer { pub table_index: TableIndex, pub base: Option<GlobalIndex>, pub offset: u32, pub elements: Box<[FuncIndex]>, }
Expand description
A WebAssembly table initializer.
Fields
table_index: TableIndex
The index of a table to initialize.
base: Option<GlobalIndex>
Optionally, a global variable giving a base index.
offset: u32
The offset to add to the base.
elements: Box<[FuncIndex]>
The values to write into the table elements.
Trait Implementations
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations
impl RefUnwindSafe for TableInitializer
impl Send for TableInitializer
impl Sync for TableInitializer
impl Unpin for TableInitializer
impl UnwindSafe for TableInitializer
Blanket Implementations
Mutably borrows from an owned value. Read more