Struct wasmtime_environ::TableElements[][src]

pub struct TableElements {
    pub table_index: TableIndex,
    pub base: Option<GlobalIndex>,
    pub offset: usize,
    pub elements: Vec<FunctionIndex>,
}

A WebAssembly table initializer.

Fields

The index of a table to initialize.

Optionally, a global variable giving a base index.

The offset to add to the base.

The values to write into the table elements.

Trait Implementations

impl Clone for TableElements
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for TableElements
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations