Struct wasmtime_environ::wasmparser::DataSectionReader
source · pub struct DataSectionReader<'a> { /* private fields */ }
Expand description
A reader for the data section of a WebAssembly module.
Implementations§
source§impl<'a> DataSectionReader<'a>
impl<'a> DataSectionReader<'a>
sourcepub fn new(
data: &'a [u8],
offset: usize
) -> Result<DataSectionReader<'a>, BinaryReaderError>
pub fn new( data: &'a [u8], offset: usize ) -> Result<DataSectionReader<'a>, BinaryReaderError>
Constructs a new DataSectionReader
for the given data and offset.
sourcepub fn original_position(&self) -> usize
pub fn original_position(&self) -> usize
Gets the original position of the section reader.
sourcepub fn read<'b>(&mut self) -> Result<Data<'b>, BinaryReaderError>where
'a: 'b,
pub fn read<'b>(&mut self) -> Result<Data<'b>, BinaryReaderError>where 'a: 'b,
Reads content of the data section.
Examples
use wasmparser::{DataSectionReader, DataKind};
let mut data_reader = DataSectionReader::new(data, 0).unwrap();
for _ in 0..data_reader.get_count() {
let data = data_reader.read().expect("data");
println!("Data: {:?}", data);
if let DataKind::Active { offset_expr, .. } = data.kind {
let mut offset_expr_reader = offset_expr.get_binary_reader();
let op = offset_expr_reader.read_operator().expect("op");
println!("offset expression: {:?}", op);
}
}
Trait Implementations§
source§impl<'a> Clone for DataSectionReader<'a>
impl<'a> Clone for DataSectionReader<'a>
source§fn clone(&self) -> DataSectionReader<'a>
fn clone(&self) -> DataSectionReader<'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 DataSectionReader<'a>
impl<'a> IntoIterator for DataSectionReader<'a>
§type Item = Result<Data<'a>, BinaryReaderError>
type Item = Result<Data<'a>, BinaryReaderError>
The type of the elements being iterated over.
§type IntoIter = SectionIteratorLimited<DataSectionReader<'a>>
type IntoIter = SectionIteratorLimited<DataSectionReader<'a>>
Which kind of iterator are we turning this into?
source§fn into_iter(self) -> <DataSectionReader<'a> as IntoIterator>::IntoIter
fn into_iter(self) -> <DataSectionReader<'a> as IntoIterator>::IntoIter
Creates an iterator from a value. Read more
source§impl<'a> SectionReader for DataSectionReader<'a>
impl<'a> SectionReader for DataSectionReader<'a>
source§fn read(
&mut self
) -> Result<<DataSectionReader<'a> as SectionReader>::Item, BinaryReaderError>
fn read( &mut self ) -> Result<<DataSectionReader<'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 DataSectionReader<'a>
impl<'a> SectionWithLimitedItems for DataSectionReader<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for DataSectionReader<'a>
impl<'a> Send for DataSectionReader<'a>
impl<'a> Sync for DataSectionReader<'a>
impl<'a> Unpin for DataSectionReader<'a>
impl<'a> UnwindSafe for DataSectionReader<'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