Enum parity_wasm::elements::External [−][src]
pub enum External {
Function(u32),
Table(TableType),
Memory(MemoryType),
Global(GlobalType),
}Expand description
External to local binding.
Variants
Function(u32)Binds to a function whose type is associated with the given index in the type section.
Tuple Fields of Function
0: u32Table(TableType)Describes local table definition to be imported as.
Tuple Fields of Table
0: TableTypeMemory(MemoryType)Describes local memory definition to be imported as.
Tuple Fields of Memory
0: MemoryTypeGlobal(GlobalType)Describes local global entry to be imported as.
Tuple Fields of Global
0: GlobalTypeTrait Implementations
Auto Trait Implementations
impl RefUnwindSafe for External
impl UnwindSafe for External
Blanket Implementations
Mutably borrows from an owned value. Read more