Struct parity_wasm::interpreter::UserDefinedElements [] [src]

pub struct UserDefinedElements<'a, E: 'a + UserError> {
    pub globals: HashMap<String, Arc<VariableInstance<E>>>,
    pub functions: Cow<'static, [UserFunctionDescriptor]>,
    pub executor: Option<&'a mut UserFunctionExecutor<E>>,
}

Set of user-defined module elements.

Fields

User globals list.

User functions list.

Functions executor.