wasmtime/runtime/vm/export.rs
1/// The value of an export passed from one instance to another.
2pub enum Export {
3 /// A function export value.
4 Function(crate::Func),
5
6 /// A table export value.
7 Table(crate::Table),
8
9 /// A memory export value.
10 Memory { memory: crate::Memory, shared: bool },
11
12 /// A global export value.
13 Global(crate::Global),
14
15 /// A tag export value.
16 Tag(crate::Tag),
17}