Enum wast::ItemKind [−][src]
pub enum ItemKind<'a> {
Func(TypeUse<'a, FunctionType<'a>>),
Table(TableType<'a>),
Memory(MemoryType),
Global(GlobalType<'a>),
Tag(TagType<'a>),
Module(TypeUse<'a, ModuleType<'a>>),
Instance(TypeUse<'a, InstanceType<'a>>),
}
Variants
Func(TypeUse<'a, FunctionType<'a>>)
Tuple Fields of Func
0: TypeUse<'a, FunctionType<'a>>
Table(TableType<'a>)
Tuple Fields of Table
0: TableType<'a>
Memory(MemoryType)
Tuple Fields of Memory
0: MemoryType
Global(GlobalType<'a>)
Tuple Fields of Global
0: GlobalType<'a>
Tag(TagType<'a>)
Tuple Fields of Tag
0: TagType<'a>
Module(TypeUse<'a, ModuleType<'a>>)
Tuple Fields of Module
0: TypeUse<'a, ModuleType<'a>>
Instance(TypeUse<'a, InstanceType<'a>>)
Tuple Fields of Instance
0: TypeUse<'a, InstanceType<'a>>
Trait Implementations
Auto Trait Implementations
impl<'a> RefUnwindSafe for ItemKind<'a>
impl<'a> UnwindSafe for ItemKind<'a>
Blanket Implementations
Mutably borrows from an owned value. Read more