pub struct Names<'a> {
pub module: Option<&'a str>,
pub functions: IdMap<Id<InputFunction<'static>>, &'a str>,
pub locals: VecMap<NameMap<'a>>,
pub labels: VecMap<NameMap<'a>>,
pub types: IdMap<Id<FuncType>, &'a str>,
pub tables: IdMap<Id<Table<'static>>, &'a str>,
pub memories: IdMap<Id<MemoryType>, &'a str>,
pub globals: IdMap<Id<Global<'static>>, &'a str>,
pub elements: IdMap<Id<Element<'static>>, &'a str>,
pub data_segments: IdMap<Id<Data<'static>>, &'a str>,
pub tags: IdMap<Id<TagType>, &'a str>,
}Fields§
§module: Option<&'a str>§functions: IdMap<Id<InputFunction<'static>>, &'a str>§locals: VecMap<NameMap<'a>>§labels: VecMap<NameMap<'a>>§types: IdMap<Id<FuncType>, &'a str>§tables: IdMap<Id<Table<'static>>, &'a str>§memories: IdMap<Id<MemoryType>, &'a str>§globals: IdMap<Id<Global<'static>>, &'a str>§elements: IdMap<Id<Element<'static>>, &'a str>§data_segments: IdMap<Id<Data<'static>>, &'a str>Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Names<'a>
impl<'a> RefUnwindSafe for Names<'a>
impl<'a> Send for Names<'a>
impl<'a> Sync for Names<'a>
impl<'a> Unpin for Names<'a>
impl<'a> UnsafeUnpin for Names<'a>
impl<'a> UnwindSafe for Names<'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