pub struct FunctionSectionReader<'a> { /* private fields */ }
Expand description
A reader for the function section of a WebAssembly module.
Implementations§
source§impl<'a> FunctionSectionReader<'a>
impl<'a> FunctionSectionReader<'a>
sourcepub fn new(
data: &'a [u8],
offset: usize
) -> Result<FunctionSectionReader<'a>, BinaryReaderError>
pub fn new( data: &'a [u8], offset: usize ) -> Result<FunctionSectionReader<'a>, BinaryReaderError>
Constructs a new FunctionSectionReader
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<u32, BinaryReaderError>
pub fn read(&mut self) -> Result<u32, BinaryReaderError>
Reads function type index from the function section.
Examples
use wasmparser::FunctionSectionReader;
let mut reader = FunctionSectionReader::new(data, 0).unwrap();
for _ in 0..reader.get_count() {
let ty = reader.read().expect("function type index");
println!("Function type index: {}", ty);
}
Trait Implementations§
source§impl<'a> Clone for FunctionSectionReader<'a>
impl<'a> Clone for FunctionSectionReader<'a>
source§fn clone(&self) -> FunctionSectionReader<'a>
fn clone(&self) -> FunctionSectionReader<'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 FunctionSectionReader<'a>
impl<'a> IntoIterator for FunctionSectionReader<'a>
§type Item = Result<u32, BinaryReaderError>
type Item = Result<u32, BinaryReaderError>
The type of the elements being iterated over.
§type IntoIter = SectionIteratorLimited<FunctionSectionReader<'a>>
type IntoIter = SectionIteratorLimited<FunctionSectionReader<'a>>
Which kind of iterator are we turning this into?
source§fn into_iter(self) -> <FunctionSectionReader<'a> as IntoIterator>::IntoIter
fn into_iter(self) -> <FunctionSectionReader<'a> as IntoIterator>::IntoIter
Creates an iterator from a value. Read more
source§impl<'a> SectionReader for FunctionSectionReader<'a>
impl<'a> SectionReader for FunctionSectionReader<'a>
source§fn read(
&mut self
) -> Result<<FunctionSectionReader<'a> as SectionReader>::Item, BinaryReaderError>
fn read( &mut self ) -> Result<<FunctionSectionReader<'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 FunctionSectionReader<'a>
impl<'a> SectionWithLimitedItems for FunctionSectionReader<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for FunctionSectionReader<'a>
impl<'a> Send for FunctionSectionReader<'a>
impl<'a> Sync for FunctionSectionReader<'a>
impl<'a> Unpin for FunctionSectionReader<'a>
impl<'a> UnwindSafe for FunctionSectionReader<'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