Enum tinywasm_types::ExternVal
source · pub enum ExternVal {
Func(FuncAddr),
Table(TableAddr),
Mem(MemAddr),
Global(GlobalAddr),
}
Expand description
A WebAssembly External Value.
See https://webassembly.github.io/spec/core/exec/runtime.html#external-values
Variants§
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for ExternVal
impl Send for ExternVal
impl Sync for ExternVal
impl Unpin for ExternVal
impl UnwindSafe for ExternVal
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