Struct wast::Table [−][src]
pub struct Table<'a> { pub span: Span, pub id: Option<Id<'a>>, pub exports: InlineExport<'a>, pub kind: TableKind<'a>, }
A WebAssembly table
directive in a module.
Fields
span: Span
Where this table was defined.
id: Option<Id<'a>>
An optional name to refer to this table by.
exports: InlineExport<'a>
If present, inline export annotations which indicate names this definition should be exported under.
kind: TableKind<'a>
How this table is textually defined in the module.