Struct wast::Table [−][src]
pub struct Table<'a> {
pub span: Span,
pub id: Option<Id<'a>>,
pub name: Option<NameAnnotation<'a>>,
pub exports: InlineExport<'a>,
pub kind: TableKind<'a>,
}Expand description
A WebAssembly table directive in a module.
Fields
span: SpanWhere this table was defined.
id: Option<Id<'a>>An optional name to refer to this table by.
name: Option<NameAnnotation<'a>>An optional name for this function stored in the custom name section.
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.