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

A reader for the core type section of a WebAssembly component.

Implementations

Constructs a new CoreTypeSectionReader for the given data and offset.

Gets the original position of the reader.

Gets a count of items in the section.

Reads content of the type section.

Examples
use wasmparser::CoreTypeSectionReader;
let data: &[u8] = &[0x01, 0x60, 0x00, 0x00];
let mut reader = CoreTypeSectionReader::new(data, 0).unwrap();
for _ in 0..reader.get_count() {
    let ty = reader.read().expect("type");
    println!("Type {:?}", ty);
}

Trait Implementations

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

Implements iterator over the type section.

Examples
use wasmparser::CoreTypeSectionReader;
let mut reader = CoreTypeSectionReader::new(data, 0).unwrap();
for ty in reader {
    println!("Type {:?}", ty.expect("type"));
}
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.
Returns an iterator over the items within this section where the offset in the original section is provided with the item. Read more

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.