pub struct InstanceSectionReader<'a> { /* private fields */ }
Expand description
A reader for the instance section of a WebAssembly component.
Implementations§
source§impl<'a> InstanceSectionReader<'a>
impl<'a> InstanceSectionReader<'a>
sourcepub fn new(
data: &'a [u8],
offset: usize
) -> Result<InstanceSectionReader<'a>, BinaryReaderError>
pub fn new(
data: &'a [u8],
offset: usize
) -> Result<InstanceSectionReader<'a>, BinaryReaderError>
Constructs a new InstanceSectionReader
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<Instance<'a>, BinaryReaderError>
pub fn read(&mut self) -> Result<Instance<'a>, BinaryReaderError>
Reads content of the instance section.
Examples
use wasmparser::InstanceSectionReader;
let mut reader = InstanceSectionReader::new(data, 0).unwrap();
for _ in 0..reader.get_count() {
let instance = reader.read().expect("instance");
println!("Instance: {:?}", instance);
}
Trait Implementations§
source§impl<'a> Clone for InstanceSectionReader<'a>
impl<'a> Clone for InstanceSectionReader<'a>
source§fn clone(&self) -> InstanceSectionReader<'a>
fn clone(&self) -> InstanceSectionReader<'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 InstanceSectionReader<'a>
impl<'a> IntoIterator for InstanceSectionReader<'a>
source§fn into_iter(self) -> <InstanceSectionReader<'a> as IntoIterator>::IntoIter
fn into_iter(self) -> <InstanceSectionReader<'a> as IntoIterator>::IntoIter
Implements iterator over the instance section.
Examples
use wasmparser::InstanceSectionReader;
let mut reader = InstanceSectionReader::new(data, 0).unwrap();
for inst in reader {
println!("Instance {:?}", inst.expect("instance"));
}
§type Item = Result<Instance<'a>, BinaryReaderError>
type Item = Result<Instance<'a>, BinaryReaderError>
The type of the elements being iterated over.
§type IntoIter = SectionIteratorLimited<InstanceSectionReader<'a>>
type IntoIter = SectionIteratorLimited<InstanceSectionReader<'a>>
Which kind of iterator are we turning this into?
source§impl<'a> SectionReader for InstanceSectionReader<'a>
impl<'a> SectionReader for InstanceSectionReader<'a>
source§fn read(
&mut self
) -> Result<<InstanceSectionReader<'a> as SectionReader>::Item, BinaryReaderError>
fn read(
&mut self
) -> Result<<InstanceSectionReader<'a> as SectionReader>::Item, BinaryReaderError>
Reads an item from the section.
source§fn original_position(&self) -> usize
fn original_position(&self) -> usize
Gets the original position of the reader.
source§fn ensure_end(&self) -> Result<(), BinaryReaderError>
fn ensure_end(&self) -> Result<(), BinaryReaderError>
Ensures the reader is at the end of the section. Read more