Trait wasmer_vm::Table[][src]

pub trait Table: Debug + Send + Sync + MemoryUsage {
    fn style(&self) -> &TableStyle;
fn ty(&self) -> &TableType;
fn size(&self) -> u32;
fn grow(&self, delta: u32, init_value: TableElement) -> Option<u32>;
fn get(&self, index: u32) -> Option<TableElement>;
fn set(&self, index: u32, reference: TableElement) -> Result<(), Trap>;
fn vmtable(&self) -> NonNull<VMTableDefinition>; fn copy(
        &self,
        src_table: &dyn Table,
        dst_index: u32,
        src_index: u32,
        len: u32
    ) -> Result<(), Trap> { ... } }
Expand description

Trait for implementing the interface of a Wasm table.

Required methods

Returns the style for this Table.

Returns the type for this Table.

Returns the number of allocated elements.

Grow table by the specified amount of elements.

Returns None if table can’t be grown by the specified amount of elements, otherwise returns the previous size of the table.

Get reference to the specified element.

Returns None if the index is out of bounds.

Set reference to the specified element.

Errors

Returns an error if the index is out of bounds.

Return a VMTableDefinition for exposing the table to compiled wasm code.

Provided methods

Copy len elements from src_table[src_index..] into dst_table[dst_index..].

Errors

Returns an error if the range is out of bounds of either the source or destination tables.

Implementors