ceres-executor 0.2.0

wasm executor of ceres
Documentation
//! Host funcitons
use crate::{value::Value, Result};

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