pub enum External {
Function(u32),
Table(TableType),
Memory(MemoryType),
Global(GlobalType),
}Expand description
External to local binding.
Variants§
Function(u32)
Binds to function with index.
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 Freeze for External
impl RefUnwindSafe for External
impl Send for External
impl Sync for External
impl Unpin for External
impl UnwindSafe for External
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more