Files
wasmer/lib/deprecated/runtime-core/doc/new-api/dynfunc.rs

7 lines
151 B
Rust

struct DynFunc {}
impl DynFunc {
fn call(&self, params: &[Value]) -> Result<Vec<Value>, CallError>;
fn signature(&self) -> &FuncDescriptor;
}