Struct wasmer_vm::VMBuiltinFunctionIndex[][src]

pub struct VMBuiltinFunctionIndex(_);
Expand description

An index type for builtin functions.

Implementations

impl VMBuiltinFunctionIndex[src]

pub const fn get_memory32_grow_index() -> Self[src]

Returns an index for wasm’s memory.grow builtin function.

pub const fn get_imported_memory32_grow_index() -> Self[src]

Returns an index for wasm’s imported memory.grow builtin function.

pub const fn get_memory32_size_index() -> Self[src]

Returns an index for wasm’s memory.size builtin function.

pub const fn get_imported_memory32_size_index() -> Self[src]

Returns an index for wasm’s imported memory.size builtin function.

pub const fn get_table_copy_index() -> Self[src]

Returns an index for wasm’s table.copy when both tables are locally defined.

pub const fn get_table_init_index() -> Self[src]

Returns an index for wasm’s table.init.

pub const fn get_elem_drop_index() -> Self[src]

Returns an index for wasm’s elem.drop.

pub const fn get_memory_copy_index() -> Self[src]

Returns an index for wasm’s memory.copy for locally defined memories.

pub const fn get_imported_memory_copy_index() -> Self[src]

Returns an index for wasm’s memory.copy for imported memories.

pub const fn get_memory_fill_index() -> Self[src]

Returns an index for wasm’s memory.fill for locally defined memories.

pub const fn get_imported_memory_fill_index() -> Self[src]

Returns an index for wasm’s memory.fill for imported memories.

pub const fn get_memory_init_index() -> Self[src]

Returns an index for wasm’s memory.init instruction.

pub const fn get_data_drop_index() -> Self[src]

Returns an index for wasm’s data.drop instruction.

pub const fn get_raise_trap_index() -> Self[src]

Returns an index for wasm’s raise_trap instruction.

pub const fn get_table_size_index() -> Self[src]

Returns an index for wasm’s table.size instruction for local tables.

pub const fn get_imported_table_size_index() -> Self[src]

Returns an index for wasm’s table.size instruction for imported tables.

pub const fn get_table_grow_index() -> Self[src]

Returns an index for wasm’s table.grow instruction for local tables.

pub const fn get_imported_table_grow_index() -> Self[src]

Returns an index for wasm’s table.grow instruction for imported tables.

pub const fn get_table_get_index() -> Self[src]

Returns an index for wasm’s table.get instruction for local tables.

pub const fn get_imported_table_get_index() -> Self[src]

Returns an index for wasm’s table.get instruction for imported tables.

pub const fn get_table_set_index() -> Self[src]

Returns an index for wasm’s table.set instruction for local tables.

pub const fn get_imported_table_set_index() -> Self[src]

Returns an index for wasm’s table.set instruction for imported tables.

pub const fn get_func_ref_index() -> Self[src]

Returns an index for wasm’s func.ref instruction.

pub const fn get_table_fill_index() -> Self[src]

Returns an index for wasm’s table.fill instruction for local tables.

pub const fn get_externref_inc_index() -> Self[src]

Returns an index for a function to increment the externref count.

pub const fn get_externref_dec_index() -> Self[src]

Returns an index for a function to decrement the externref count.

pub const fn builtin_functions_total_number() -> u32[src]

Returns the total number of builtin functions.

pub const fn index(self) -> u32[src]

Return the index as an u32 number.

Trait Implementations

impl Clone for VMBuiltinFunctionIndex[src]

fn clone(&self) -> VMBuiltinFunctionIndex[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for VMBuiltinFunctionIndex[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Copy for VMBuiltinFunctionIndex[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> ArchivePointee for T

type ArchivedMetadata = ()

The archived version of the pointer metadata for this type.

pub fn pointer_metadata(
    &<T as ArchivePointee>::ArchivedMetadata
) -> <T as Pointee>::Metadata

Converts some archived metadata to the pointer metadata for itself.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> Pointee for T

type Metadata = ()

The type for metadata in pointers and references to Self.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

Creates owned data from borrowed data, usually by cloning. Read more

pub fn clone_into(&self, target: &mut T)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.