Struct wasmtime_environ::Compilation
source · pub struct Compilation {
pub functions: PrimaryMap<DefinedFuncIndex, Vec<u8>>,
}
Expand description
The result of compiling a WebAssemby module’s functions.
Fields§
§functions: PrimaryMap<DefinedFuncIndex, Vec<u8>>
Compiled machine code for the function bodies.
Implementations§
source§impl Compilation
impl Compilation
sourcepub fn new(functions: PrimaryMap<DefinedFuncIndex, Vec<u8>>) -> Self
pub fn new(functions: PrimaryMap<DefinedFuncIndex, Vec<u8>>) -> Self
Allocates the compilation result with the given function bodies.