Enum wast::GlobalKind [−][src]
pub enum GlobalKind<'a> { Import(InlineImport<'a>), Inline(Expression<'a>), }
Different kinds of globals that can be defined in a module.
Variants
Import(InlineImport<'a>)
A global which is actually defined as an import, such as:
(global i32 (import "foo" "bar"))
Inline(Expression<'a>)
A global defined inline in the module itself