pub type HostFn = Box<dyn Fn(Vec<Value>) -> Result<Value> + Send + Sync + 'static>;
A boxed host function callable from dialogue expressions.
pub struct HostFn(/* private fields */);