Type Alias wasmer::VMConfig

source ·
pub type VMConfig = VMConfig;
👎Deprecated: wasmer::VMConfig is deprecated, use wasmer::sys::VMConfig instead
Expand description

Configuration for the runtime VM Currently only the stack size is configurable

Aliased Type§

struct VMConfig {
    pub wasm_stack_size: Option<usize>,
}

Fields§

§wasm_stack_size: Option<usize>

Optionnal stack size (in byte) of the VM. Value lower than 8K will be rounded to 8K.