pub struct ProducersSectionReader<'a> { /* private fields */ }
Expand description
A reader for the producers custom section of a WebAssembly module.
Implementations§
source§impl<'a> ProducersSectionReader<'a>
impl<'a> ProducersSectionReader<'a>
sourcepub fn new(
data: &'a [u8],
offset: usize
) -> Result<ProducersSectionReader<'a>, BinaryReaderError>
pub fn new( data: &'a [u8], offset: usize ) -> Result<ProducersSectionReader<'a>, BinaryReaderError>
Creates reader for the producers section.
Examples
use wasmparser::{ProducersSectionReader, ProducersFieldValue, Result};
let mut reader = ProducersSectionReader::new(data, 0).expect("producers reader");
let field = reader.read().expect("producers field");
assert!(field.name == "language");
let mut values_reader = field.get_producer_field_values_reader().expect("values reader");
let value = values_reader.into_iter().collect::<Result<Vec<ProducersFieldValue>>>().expect("values");
assert!(value.len() == 2);
assert!(value[0].name == "wat" && value[0].version == "1");
assert!(value[1].name == "C" && value[1].version == "9.0");
sourcepub fn original_position(&self) -> usize
pub fn original_position(&self) -> usize
Gets the original position of the reader.
sourcepub fn read<'b>(&mut self) -> Result<ProducersField<'b>, BinaryReaderError>where
'a: 'b,
pub fn read<'b>(&mut self) -> Result<ProducersField<'b>, BinaryReaderError>where 'a: 'b,
Reads an item from the reader.
Trait Implementations§
source§impl<'a> IntoIterator for ProducersSectionReader<'a>
impl<'a> IntoIterator for ProducersSectionReader<'a>
§type Item = Result<ProducersField<'a>, BinaryReaderError>
type Item = Result<ProducersField<'a>, BinaryReaderError>
The type of the elements being iterated over.
§type IntoIter = SectionIteratorLimited<ProducersSectionReader<'a>>
type IntoIter = SectionIteratorLimited<ProducersSectionReader<'a>>
Which kind of iterator are we turning this into?
source§fn into_iter(self) -> <ProducersSectionReader<'a> as IntoIterator>::IntoIter
fn into_iter(self) -> <ProducersSectionReader<'a> as IntoIterator>::IntoIter
Creates an iterator from a value. Read more
source§impl<'a> SectionReader for ProducersSectionReader<'a>
impl<'a> SectionReader for ProducersSectionReader<'a>
§type Item = ProducersField<'a>
type Item = ProducersField<'a>
The item returned by the reader.
source§fn read(
&mut self
) -> Result<<ProducersSectionReader<'a> as SectionReader>::Item, BinaryReaderError>
fn read( &mut self ) -> Result<<ProducersSectionReader<'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 ProducersSectionReader<'a>
impl<'a> SectionWithLimitedItems for ProducersSectionReader<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for ProducersSectionReader<'a>
impl<'a> Send for ProducersSectionReader<'a>
impl<'a> Sync for ProducersSectionReader<'a>
impl<'a> Unpin for ProducersSectionReader<'a>
impl<'a> UnwindSafe for ProducersSectionReader<'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