Struct wasmtime_environ::TableInitializer
source · [−]pub struct TableInitializer {
pub table_index: TableIndex,
pub base: Option<GlobalIndex>,
pub offset: u32,
pub elements: Box<[FuncIndex]>,
}
Expand description
A WebAssembly table initializer segment.
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
sourceimpl Clone for TableInitializer
impl Clone for TableInitializer
sourcefn clone(&self) -> TableInitializer
fn clone(&self) -> TableInitializer
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for TableInitializer
impl Debug for TableInitializer
sourceimpl<'de> Deserialize<'de> for TableInitializer
impl<'de> Deserialize<'de> for TableInitializer
sourcefn 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
sourceimpl Serialize for TableInitializer
impl Serialize for TableInitializer
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more