multiversx_chain_vm::vm_hooks

Trait VMHooksEndpointFinish

Source
pub trait VMHooksEndpointFinish: VMHooksHandlerSource + VMHooksManagedTypes {
    // Provided methods
    fn finish_slice_u8(&self, slice: &[u8]) { ... }
    fn finish_big_int_raw(&self, handle: RawHandle) { ... }
    fn finish_big_uint_raw(&self, handle: RawHandle) { ... }
    fn finish_managed_buffer_raw(&self, handle: RawHandle) { ... }
    fn finish_i64(&self, value: i64) { ... }
    fn finish_u64(&self, value: u64) { ... }
}
Expand description

Interface to only be used by code generated by the macros. The smart contract code doesn’t have access to these methods directly.

Provided Methods§

Source

fn finish_slice_u8(&self, slice: &[u8])

Source

fn finish_big_int_raw(&self, handle: RawHandle)

Source

fn finish_big_uint_raw(&self, handle: RawHandle)

Source

fn finish_managed_buffer_raw(&self, handle: RawHandle)

Source

fn finish_i64(&self, value: i64)

Source

fn finish_u64(&self, value: u64)

Implementors§