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