pub trait VmInvoke {
    // Required method
    fn invoke<Y, V>(
        &mut self,
        export_name: &str,
        input: &IndexedScryptoValue,
        api: &mut Y,
        vm_api: &V
    ) -> Result<IndexedScryptoValue, RuntimeError>
       where Y: ClientApi<RuntimeError> + KernelNodeApi + KernelSubstateApi<SystemLockData>,
             V: VmApi;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§