pub trait KernelInvokeApi<C> {
    // Required method
    fn kernel_invoke(
        &mut self,
        invocation: Box<KernelInvocation<C>>
    ) -> Result<IndexedScryptoValue, RuntimeError>;
}
Expand description

API for invoking a function creating a new call frame and passing control to the callee

Required Methods§

Implementors§