Struct wasmparser::CoreTypeSectionReader
source · pub struct CoreTypeSectionReader<'a> { /* private fields */ }
Expand description
A reader for the core type section of a WebAssembly component.
Implementations§
source§impl<'a> CoreTypeSectionReader<'a>
impl<'a> CoreTypeSectionReader<'a>
sourcepub fn new(data: &'a [u8], offset: usize) -> Result<Self>
pub fn new(data: &'a [u8], offset: usize) -> Result<Self>
Constructs a new CoreTypeSectionReader
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<CoreType<'a>>
pub fn read(&mut self) -> Result<CoreType<'a>>
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§
source§impl<'a> Clone for CoreTypeSectionReader<'a>
impl<'a> Clone for CoreTypeSectionReader<'a>
source§fn clone(&self) -> CoreTypeSectionReader<'a>
fn clone(&self) -> CoreTypeSectionReader<'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 CoreTypeSectionReader<'a>
impl<'a> IntoIterator for CoreTypeSectionReader<'a>
source§fn into_iter(self) -> Self::IntoIter
fn into_iter(self) -> Self::IntoIter
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"));
}
§type Item = Result<CoreType<'a>, BinaryReaderError>
type Item = Result<CoreType<'a>, BinaryReaderError>
The type of the elements being iterated over.
§type IntoIter = SectionIteratorLimited<CoreTypeSectionReader<'a>>
type IntoIter = SectionIteratorLimited<CoreTypeSectionReader<'a>>
Which kind of iterator are we turning this into?
source§impl<'a> SectionReader for CoreTypeSectionReader<'a>
impl<'a> SectionReader for CoreTypeSectionReader<'a>
source§fn original_position(&self) -> usize
fn original_position(&self) -> usize
Gets the original position of the reader.
source§impl<'a> SectionWithLimitedItems for CoreTypeSectionReader<'a>
impl<'a> SectionWithLimitedItems for CoreTypeSectionReader<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for CoreTypeSectionReader<'a>
impl<'a> Send for CoreTypeSectionReader<'a>
impl<'a> Sync for CoreTypeSectionReader<'a>
impl<'a> Unpin for CoreTypeSectionReader<'a>
impl<'a> UnwindSafe for CoreTypeSectionReader<'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