pub enum ItemIndex {
IndexSpace(u32),
Internal(u32),
External(u32),
}
Expand description
Item index in items index space.
Variants§
IndexSpace(u32)
Index in index space.
Internal(u32)
Internal item index (i.e. index of item in items section).
External(u32)
External module item index (i.e. index of item in the import section).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ItemIndex
impl RefUnwindSafe for ItemIndex
impl Send for ItemIndex
impl Sync for ItemIndex
impl Unpin for ItemIndex
impl UnwindSafe for ItemIndex
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