Files
wasmer/lib/deprecated/runtime-core/doc/new-api/dynfunc.rs
2020-07-07 13:05:20 +02:00

7 lines
144 B
Rust

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