Struct cranelift_wasm::wasmparser::TypeSectionReader
source · pub struct TypeSectionReader<'a> { /* private fields */ }
Expand description
A reader for the type section of a WebAssembly module.
Implementations§
source§impl<'a> TypeSectionReader<'a>
impl<'a> TypeSectionReader<'a>
sourcepub fn new(
data: &'a [u8],
offset: usize
) -> Result<TypeSectionReader<'a>, BinaryReaderError>
pub fn new(
data: &'a [u8],
offset: usize
) -> Result<TypeSectionReader<'a>, BinaryReaderError>
Constructs a new TypeSectionReader
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<TypeDef, BinaryReaderError>
pub fn read(&mut self) -> Result<TypeDef, BinaryReaderError>
Reads content of the type section.
Examples
use wasmparser::TypeSectionReader;
let data: &[u8] = &[0x01, 0x60, 0x00, 0x00];
let mut reader = TypeSectionReader::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 TypeSectionReader<'a>
impl<'a> Clone for TypeSectionReader<'a>
source§fn clone(&self) -> TypeSectionReader<'a>
fn clone(&self) -> TypeSectionReader<'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 TypeSectionReader<'a>
impl<'a> IntoIterator for TypeSectionReader<'a>
source§fn into_iter(self) -> <TypeSectionReader<'a> as IntoIterator>::IntoIter
fn into_iter(self) -> <TypeSectionReader<'a> as IntoIterator>::IntoIter
Implements iterator over the type section.
Examples
use wasmparser::TypeSectionReader;
let mut reader = TypeSectionReader::new(data, 0).unwrap();
for ty in reader {
println!("Type {:?}", ty.expect("type"));
}
§type Item = Result<TypeDef, BinaryReaderError>
type Item = Result<TypeDef, BinaryReaderError>
The type of the elements being iterated over.
§type IntoIter = SectionIteratorLimited<TypeSectionReader<'a>>
type IntoIter = SectionIteratorLimited<TypeSectionReader<'a>>
Which kind of iterator are we turning this into?
source§impl<'a> SectionReader for TypeSectionReader<'a>
impl<'a> SectionReader for TypeSectionReader<'a>
source§fn read(
&mut self
) -> Result<<TypeSectionReader<'a> as SectionReader>::Item, BinaryReaderError>
fn read(
&mut self
) -> Result<<TypeSectionReader<'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