[][src]Crate wasmer_runtime

Modules

error
export
import
instance
memory
module
prelude
structures
table
types
vm

Structs

Instance

A WebAssembly instance

Module

Constants

VERSION

The current version of this crate

VERSION

The current version of this crate

Functions

compile

The compile(...) function compiles a Module from WebAssembly binary code. This function is useful if it is necessary to a compile a module before it can be instantiated (otherwise, the webassembly::instantiate() function should be used).

compile_with

Compile a webassembly module using the provided compiler.

instantiate

The instantiate(...) function allows you to compile and instantiate WebAssembly code in one go.

validate

This function performs validation as defined by the WebAssembly specification and returns true if validation succeeded, false if validation failed.