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