Enum parity_wasm::elements::External
source · [−]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.
Table(TableType)
Describes local table definition to be imported as.
Memory(MemoryType)
Describes local memory definition to be imported as.
Global(GlobalType)
Describes local global entry to be imported as.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for External
impl UnwindSafe for External
Blanket Implementations
Mutably borrows from an owned value. Read more