mirror of
https://github.com/mii443/wasmer.git
synced 2025-12-07 05:08:19 +00:00
7 lines
144 B
Rust
7 lines
144 B
Rust
struct DynFunc {}
|
|
|
|
impl DynFunc {
|
|
fn call(&self, params: &[Value]) -> Result<Vec<Value>, CallError>;
|
|
fn signature(&self) -> &FuncSig;
|
|
}
|