You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm building plugin system for my rust app using wasmer crate, and I need to call funcref from guest table in host directly without calling call_callback function from guest
Note: error message when i try to call funcref from guest table directly
thread 'main' panicked at 'not implemented: Native function definitions can't be directly called from the host yet', MY_CARGO_PATH\wasmer-2.2.1\src\sys\externals\function.rs:540:17
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
The text was updated successfully, but these errors were encountered:
rsta79
changed the title
Please implement the directly call from guest table feature
Please implement the directly call funcref from guest table feature
May 1, 2022
Motivation
I'm building plugin system for my rust app using wasmer crate, and I need to call funcref from guest table in host directly without calling call_callback function from guest
Proposed solution
This feature is implemented in wasmtime crate (https://github.com/bytecodealliance/wasmtime)
Additional context
Note: error message when i try to call funcref from guest table directly
The text was updated successfully, but these errors were encountered: