Enum wasmtime_environ::wasmparser::Name
source · pub enum Name<'a> {
Module {
name: &'a str,
name_range: Range<usize>,
},
Function(SectionLimited<'a, Naming<'a>>),
Local(SectionLimited<'a, IndirectNaming<'a>>),
Label(SectionLimited<'a, IndirectNaming<'a>>),
Type(SectionLimited<'a, Naming<'a>>),
Table(SectionLimited<'a, Naming<'a>>),
Memory(SectionLimited<'a, Naming<'a>>),
Global(SectionLimited<'a, Naming<'a>>),
Element(SectionLimited<'a, Naming<'a>>),
Data(SectionLimited<'a, Naming<'a>>),
Unknown {
ty: u8,
data: &'a [u8],
range: Range<usize>,
},
}
Expand description
Represents a name read from the names custom section.
Variants§
Module
Fields
The name is for the module.
Function(SectionLimited<'a, Naming<'a>>)
The name is for the functions.
Local(SectionLimited<'a, IndirectNaming<'a>>)
The name is for the function locals.
Label(SectionLimited<'a, IndirectNaming<'a>>)
The name is for the function labels.
Type(SectionLimited<'a, Naming<'a>>)
The name is for the types.
Table(SectionLimited<'a, Naming<'a>>)
The name is for the tables.
Memory(SectionLimited<'a, Naming<'a>>)
The name is for the memories.
Global(SectionLimited<'a, Naming<'a>>)
The name is for the globals.
Element(SectionLimited<'a, Naming<'a>>)
The name is for the element segments.
Data(SectionLimited<'a, Naming<'a>>)
The name is for the data segments.
Unknown
Fields
An unknown name subsection.
Trait Implementations§
source§impl<'a> Subsection<'a> for Name<'a>
impl<'a> Subsection<'a> for Name<'a>
source§fn from_reader(
id: u8,
reader: BinaryReader<'a>
) -> Result<Name<'a>, BinaryReaderError>
fn from_reader( id: u8, reader: BinaryReader<'a> ) -> Result<Name<'a>, BinaryReaderError>
Converts the section identifier provided with the section contents into
a typed section