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<ComponentType<'a>, BinaryReaderError>
pub fn read(&mut self) -> Result<ComponentType<'a>, BinaryReaderError>
Reads content of the type section.
Examples
use wasmparser::ComponentTypeSectionReader;
let data: &[u8] = &[0x01, 0x40, 0x01, 0x01, 0x03, b'f', b'o', b'o', 0x73, 0x00, 0x73];
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 data: &[u8] = &[0x01, 0x40, 0x01, 0x01, 0x03, b'f', b'o', b'o', 0x73, 0x00, 0x73];
let mut reader = ComponentTypeSectionReader::new(data, 0).unwrap();
for ty in reader {
println!("Type {:?}", ty.expect("type"));
}
§type Item = Result<ComponentType<'a>, BinaryReaderError>
type Item = Result<ComponentType<'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 = ComponentType<'a>
type Item = ComponentType<'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
source§impl<'a> SectionWithLimitedItems for ComponentTypeSectionReader<'a>
impl<'a> SectionWithLimitedItems for ComponentTypeSectionReader<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for ComponentTypeSectionReader<'a>
impl<'a> Send for ComponentTypeSectionReader<'a>
impl<'a> Sync for ComponentTypeSectionReader<'a>
impl<'a> Unpin for ComponentTypeSectionReader<'a>
impl<'a> UnwindSafe for ComponentTypeSectionReader<'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