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>>;