inkpad-executor 0.1.0

wasm executor of inkpad
Documentation
1
2
3
4
5
//! Host funcitons
use crate::{value::Value, Result};

/// Host function generic type
pub type HostFuncType<T> = fn(&mut T, &[Value]) -> Result<Option<Value>>;