Trait parity_wasm::interpreter::UserFunctionExecutor [] [src]

pub trait UserFunctionExecutor {
    fn execute(
        &mut self,
        name: &str,
        context: CallerContext
    ) -> Result<Option<RuntimeValue>, Error>; }
Deprecated since 0.23

: Use wasmi crate to interpret wasm

User functions executor.

Required Methods

Deprecated since 0.23

: Use wasmi crate to interpret wasm

Execute function with given name.

Implementors