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