pub type VmAsyncBuiltinFn = Rc<dyn Fn(Vec<VmValue>) -> Pin<Box<dyn Future<Output = Result<VmValue, VmError>>>>>;
An async builtin function for the VM.
pub struct VmAsyncBuiltinFn { /* private fields */ }