Struct wasmparser::ExportSectionReader
source · pub struct ExportSectionReader<'a> { /* private fields */ }
Expand description
A reader for the export section of a WebAssembly module.
Implementations§
source§impl<'a> ExportSectionReader<'a>
impl<'a> ExportSectionReader<'a>
sourcepub fn new(data: &'a [u8], offset: usize) -> Result<Self>
pub fn new(data: &'a [u8], offset: usize) -> Result<Self>
Constructs a new ExportSectionReader
for 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.
sourcepub fn read(&mut self) -> Result<Export<'a>>
pub fn read(&mut self) -> Result<Export<'a>>
Reads content of the export section.
Examples
use wasmparser::ExportSectionReader;
let mut reader = ExportSectionReader::new(data, 0).unwrap();
for _ in 0..reader.get_count() {
let export = reader.read().expect("export");
println!("Export: {:?}", export);
}
Trait Implementations§
source§impl<'a> Clone for ExportSectionReader<'a>
impl<'a> Clone for ExportSectionReader<'a>
source§fn clone(&self) -> ExportSectionReader<'a>
fn clone(&self) -> ExportSectionReader<'a>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<'a> IntoIterator for ExportSectionReader<'a>
impl<'a> IntoIterator for ExportSectionReader<'a>
§type Item = Result<Export<'a>, BinaryReaderError>
type Item = Result<Export<'a>, BinaryReaderError>
The type of the elements being iterated over.
§type IntoIter = SectionIteratorLimited<ExportSectionReader<'a>>
type IntoIter = SectionIteratorLimited<ExportSectionReader<'a>>
Which kind of iterator are we turning this into?
source§impl<'a> SectionReader for ExportSectionReader<'a>
impl<'a> SectionReader for ExportSectionReader<'a>
source§fn original_position(&self) -> usize
fn original_position(&self) -> usize
Gets the original position of the reader.