Struct wasmer_vm::VMBuiltinFunctionIndex [−][src]
pub struct VMBuiltinFunctionIndex(_);
Expand description
An index type for builtin functions.
Implementations
impl VMBuiltinFunctionIndex
[src]
impl VMBuiltinFunctionIndex
[src]pub const fn get_memory32_grow_index() -> Self
[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]
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]
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]
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]
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]
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]
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]
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]
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]
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]
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]
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]
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]
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]
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]
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]
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]
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]
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]
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]
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]
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]
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]
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]
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]
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]
pub const fn builtin_functions_total_number() -> u32
[src]Returns the total number of builtin functions.
Trait Implementations
impl Clone for VMBuiltinFunctionIndex
[src]
impl Clone for VMBuiltinFunctionIndex
[src]fn clone(&self) -> 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]
fn clone_from(&mut self, source: &Self)
1.0.0[src]Performs copy-assignment from source
. Read more
impl Debug for VMBuiltinFunctionIndex
[src]
impl Debug for VMBuiltinFunctionIndex
[src]impl Copy for VMBuiltinFunctionIndex
[src]
Auto Trait Implementations
impl RefUnwindSafe for VMBuiltinFunctionIndex
impl Send for VMBuiltinFunctionIndex
impl Sync for VMBuiltinFunctionIndex
impl Unpin for VMBuiltinFunctionIndex
impl UnwindSafe for VMBuiltinFunctionIndex
Blanket Implementations
impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
pub fn pointer_metadata(
&<T as ArchivePointee>::ArchivedMetadata
) -> <T as Pointee>::Metadata
pub fn pointer_metadata(
&<T as ArchivePointee>::ArchivedMetadata
) -> <T as Pointee>::Metadata
Converts some archived metadata to the pointer metadata for itself.
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
[src]type Owned = T
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
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]
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