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