Struct wast::Export [−][src]
pub struct Export<'a> {
pub span: Span,
pub name: &'a str,
pub index: ItemRef<'a, ExportKind>,
}Expand description
A entry in a WebAssembly module’s export section.
Fields
span: SpanWhere this export was defined.
name: &'a strThe name of this export from the module.
index: ItemRef<'a, ExportKind>What’s being exported from the module.