[][src]Trait lucet_runtime::Module

pub trait Module: ModuleInternal {
    fn initial_globals_size(&self) -> usize { ... }
}

The read-only parts of a Lucet program, including its code and initial heap configuration.

Types that implement this trait are suitable for use with Region::new_instance().

Provided methods

fn initial_globals_size(&self) -> usize

Calculate the initial size in bytes of the module's Wasm globals.

Loading content...

Implementors

impl Module for DlModule[src]

Loading content...