pub enum ItemKind<'a> {
Func(TypeUse<'a, FunctionType<'a>>),
Table(TableType<'a>),
Memory(MemoryType),
Global(GlobalType<'a>),
Tag(TagType<'a>),
}
Variants§
Func(TypeUse<'a, FunctionType<'a>>)
Table(TableType<'a>)
Memory(MemoryType)
Global(GlobalType<'a>)
Tag(TagType<'a>)
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for ItemKind<'a>
impl<'a> RefUnwindSafe for ItemKind<'a>
impl<'a> Send for ItemKind<'a>
impl<'a> Sync for ItemKind<'a>
impl<'a> Unpin for ItemKind<'a>
impl<'a> UnwindSafe for ItemKind<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more