Struct wasmparser_nostd::CoreTypeSectionReader
source · [−]pub struct CoreTypeSectionReader<'a> { /* private fields */ }
Expand description
A reader for the core type section of a WebAssembly component.
Implementations
sourceimpl<'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_nostd::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
sourceimpl<'a> Clone for CoreTypeSectionReader<'a>
impl<'a> Clone for CoreTypeSectionReader<'a>
sourcefn clone(&self) -> CoreTypeSectionReader<'a>
fn clone(&self) -> CoreTypeSectionReader<'a>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl<'a> IntoIterator for CoreTypeSectionReader<'a>
impl<'a> IntoIterator for CoreTypeSectionReader<'a>
sourcefn into_iter(self) -> Self::IntoIter
fn into_iter(self) -> Self::IntoIter
Implements iterator over the type section.
Examples
use wasmparser_nostd::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?
sourceimpl<'a> SectionReader for CoreTypeSectionReader<'a>
impl<'a> SectionReader for CoreTypeSectionReader<'a>
sourcefn original_position(&self) -> usize
fn original_position(&self) -> usize
Gets the original position of the reader.
sourcefn ensure_end(&self) -> Result<()>
fn ensure_end(&self) -> Result<()>
Ensures the reader is at the end of the section. Read more
sourceimpl<'a> SectionWithLimitedItems for CoreTypeSectionReader<'a>
impl<'a> SectionWithLimitedItems for CoreTypeSectionReader<'a>
sourcefn into_iter_with_offsets(self) -> IntoIterWithOffsets<Self>ⓘNotable traits for IntoIterWithOffsets<R>impl<R> Iterator for IntoIterWithOffsets<R>where
R: SectionWithLimitedItems, type Item = Result<(usize, R::Item)>;
where
Self: Sized,
fn into_iter_with_offsets(self) -> IntoIterWithOffsets<Self>ⓘNotable traits for IntoIterWithOffsets<R>impl<R> Iterator for IntoIterWithOffsets<R>where
R: SectionWithLimitedItems, type Item = Result<(usize, R::Item)>;
where
Self: Sized,
R: SectionWithLimitedItems, type Item = Result<(usize, R::Item)>;
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
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more