Versions in this module Expand all Collapse all v0 v0.15.2 Oct 5, 2022 Changes in this version + func NewBuilder(ref *moduleref.WasmModuleRef, api api.HostAPI) runtime.RuntimeBuilder + type WasmtimeBuilder struct + func (w *WasmtimeBuilder) New() (runtime.RuntimeInstance, error) + type WasmtimeInstance struct + func (w *WasmtimeInstance) Call(fn string, args ...interface{}) (interface{}, error) + func (w *WasmtimeInstance) Close() + func (w *WasmtimeInstance) Deallocate(pointer int32, length int) + func (w *WasmtimeInstance) ReadMemory(pointer int32, size int32) []byte + func (w *WasmtimeInstance) WriteMemory(data []byte) (int32, error) + func (w *WasmtimeInstance) WriteMemoryAtLocation(pointer int32, data []byte)