Struct wasmparser::NameSectionReader
source · pub struct NameSectionReader<'a> { /* private fields */ }
Expand description
A reader for the name custom section of a WebAssembly module.
Implementations§
source§impl<'a> NameSectionReader<'a>
impl<'a> NameSectionReader<'a>
sourcepub fn new(data: &'a [u8], offset: usize) -> Result<NameSectionReader<'a>>
pub fn new(data: &'a [u8], offset: usize) -> Result<NameSectionReader<'a>>
Constructs a new NameSectionReader
from the given data and offset.
sourcepub fn original_position(&self) -> usize
pub fn original_position(&self) -> usize
Gets the original position of the section reader.
Trait Implementations§
source§impl<'a> IntoIterator for NameSectionReader<'a>
impl<'a> IntoIterator for NameSectionReader<'a>
§type Item = Result<Name<'a>, BinaryReaderError>
type Item = Result<Name<'a>, BinaryReaderError>
The type of the elements being iterated over.
§type IntoIter = SectionIterator<NameSectionReader<'a>>
type IntoIter = SectionIterator<NameSectionReader<'a>>
Which kind of iterator are we turning this into?
source§impl<'a> SectionReader for NameSectionReader<'a>
impl<'a> SectionReader for NameSectionReader<'a>
source§fn original_position(&self) -> usize
fn original_position(&self) -> usize
Gets the original position of the reader.