Enum wast::MemoryKind [−][src]
pub enum MemoryKind<'a> { Import { import: InlineImport<'a>, ty: MemoryType, }, Normal(MemoryType), Inline { is_32: bool, data: Vec<DataVal<'a>>, }, }
Different syntactical ways a memory can be defined in a module.
Variants
This memory is actually an inlined import definition.
Show fields
Fields of Import
import: InlineImport<'a>
ty: MemoryType
Normal(MemoryType)
A typical memory definition which simply says the limits of the memory
The data of this memory, starting from 0, explicitly listed