pub struct InstanceSectionReader<'a> { /* private fields */ }
Expand description

A reader for the instance section of a WebAssembly component.

Implementations§

Constructs a new InstanceSectionReader for the given data and offset.

Gets the original position of the section reader.

Gets the count of items in the section.

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§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more

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"));
}
The type of the elements being iterated over.
Which kind of iterator are we turning this into?
The item returned by the reader.
Reads an item from the section.
Determines if the reader is at end-of-section.
Gets the original position of the reader.
Gets the range of the reader.
Ensures the reader is at the end of the section. Read more
Gets the count of the items in the section.

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.