ceres-executor 0.2.0

wasm executor of ceres
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>>;