pub struct ComponentTypeSectionReader<'a> { /* private fields */ }
Expand description
A reader for the type section of a WebAssembly component.
Implementations§
source§impl<'a> ComponentTypeSectionReader<'a>
impl<'a> ComponentTypeSectionReader<'a>
sourcepub fn new(
data: &'a [u8],
offset: usize
) -> Result<ComponentTypeSectionReader<'a>, BinaryReaderError>
pub fn new(
data: &'a [u8],
offset: usize
) -> Result<ComponentTypeSectionReader<'a>, BinaryReaderError>
Constructs a new ComponentTypeSectionReader
for the given data and offset.
sourcepub fn original_position(&self) -> usize
pub fn original_position(&self) -> usize
Gets the original position of the reader.
sourcepub fn read(&mut self) -> Result<ComponentTypeDef<'a>, BinaryReaderError>
pub fn read(&mut self) -> Result<ComponentTypeDef<'a>, BinaryReaderError>
Reads content of the type section.
Examples
use wasmparser::ComponentTypeSectionReader;
let data: &[u8] = &[0x01, 0x4c, 0x01, 0x01, 0x03, b'f', b'o', b'o', 0x72, 0x72];
let mut reader = ComponentTypeSectionReader::new(data, 0).unwrap();
for _ in 0..reader.get_count() {
let ty = reader.read().expect("type");
println!("Type {:?}", ty);
}
Trait Implementations§
source§impl<'a> Clone for ComponentTypeSectionReader<'a>
impl<'a> Clone for ComponentTypeSectionReader<'a>
source§fn clone(&self) -> ComponentTypeSectionReader<'a>
fn clone(&self) -> ComponentTypeSectionReader<'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 ComponentTypeSectionReader<'a>
impl<'a> IntoIterator for ComponentTypeSectionReader<'a>
source§fn into_iter(self) -> <ComponentTypeSectionReader<'a> as IntoIterator>::IntoIter
fn into_iter(self) -> <ComponentTypeSectionReader<'a> as IntoIterator>::IntoIter
Implements iterator over the type section.
Examples
use wasmparser::ComponentTypeSectionReader;
let mut reader = ComponentTypeSectionReader::new(data, 0).unwrap();
for ty in reader {
println!("Type {:?}", ty.expect("type"));
}
§type Item = Result<ComponentTypeDef<'a>, BinaryReaderError>
type Item = Result<ComponentTypeDef<'a>, BinaryReaderError>
The type of the elements being iterated over.
§type IntoIter = SectionIteratorLimited<ComponentTypeSectionReader<'a>>
type IntoIter = SectionIteratorLimited<ComponentTypeSectionReader<'a>>
Which kind of iterator are we turning this into?
source§impl<'a> SectionReader for ComponentTypeSectionReader<'a>
impl<'a> SectionReader for ComponentTypeSectionReader<'a>
§type Item = ComponentTypeDef<'a>
type Item = ComponentTypeDef<'a>
The item returned by the reader.
source§fn read(
&mut self
) -> Result<<ComponentTypeSectionReader<'a> as SectionReader>::Item, BinaryReaderError>
fn read(
&mut self
) -> Result<<ComponentTypeSectionReader<'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