Type Alias muse_lang::runtime::value::InvokeFn

source ·
pub type InvokeFn = Box<dyn Fn(&AnyDynamic, &mut VmContext<'_, '_>, &SymbolRef, Arity) -> Result<Value, Fault> + Send + Sync>;
Expand description

A boxed invoke handler used in a TypeVtable.

Aliased Type§

struct InvokeFn(/* private fields */);