Struct 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<Self>
pub fn new(data: &'a [u8], offset: usize) -> Result<Self>
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<Type>
pub fn read(&mut self) -> Result<Type>
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) -> Self::IntoIter
fn into_iter(self) -> Self::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<Type, BinaryReaderError>
type Item = Result<Type, 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 original_position(&self) -> usize
fn original_position(&self) -> usize
Gets the original position of the reader.
source§impl<'a> SectionWithLimitedItems for TypeSectionReader<'a>
impl<'a> SectionWithLimitedItems for TypeSectionReader<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for TypeSectionReader<'a>
impl<'a> Send for TypeSectionReader<'a>
impl<'a> Sync for TypeSectionReader<'a>
impl<'a> Unpin for TypeSectionReader<'a>
impl<'a> UnwindSafe for TypeSectionReader<'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