pub trait VmFunction<'vm> {
    fn unpack_and_call(&self, vm: &'vm Thread) -> Status;
}
Expand description

Trait which abstracts over types which can be called by being pulling the arguments it needs from the virtual machine’s stack

Required Methods

Implementations on Foreign Types

Implementors