Expand description
wasmtime_runtime_layer
implements the wasm_runtime_layer
abstraction interface over WebAssembly runtimes for Wasmtime
.
§Optional features
cranelift - Enables executing WASM modules and components with the Cranelift compiler, as described in the Wasmtime documentation. Enabled by default.
winch - Enables executing WASM modules and components with the Winch compiler, as described in the Wasmtime documentation.
Structs§
- Engine
- Newtype wrapper around
wasmtime::Engine
. - Extern
Ref - Newtype wrapper around
wasmtime::Rooted<wasmtime::ExternRef>
. - Func
- Newtype wrapper around
wasmtime::Func
. - Global
- Newtype wrapper around
wasmtime::Global
. - Instance
- Wrapper around
wasmtime::Instance
. - Memory
- Newtype wrapper around
wasmtime::Memory
. - Module
- Newtype wrapper around
wasmtime::Module
. - Store
- Newtype wrapper around
wasmtime::Store<T>
. - Store
Context - Newtype wrapper around [
wasmtime::StoreContext<'a, T>
]. - Store
Context Mut - Newtype wrapper around [
wasmtime::StoreContextMut<'a, T>
]. - Table
- Newtype wrapper around
wasmtime::Table
.