Struct gluon_vm::compiler::CompiledModule[][src]

pub struct CompiledModule {
    pub module_globals: Vec<Symbol>,
    pub function: CompiledFunction,
}

Fields

Storage for globals which are needed by the module which is currently being compiled

Trait Implementations

impl Debug for CompiledModule
[src]

Formats the value using the given formatter. Read more

impl From<CompiledFunction> for CompiledModule
[src]

Performs the conversion.

Auto Trait Implementations