pub struct ComponentImportSectionReader<'a> { /* private fields */ }
Expand description
A reader for the import section of a WebAssembly component.
Implementations§
source§impl<'a> ComponentImportSectionReader<'a>
impl<'a> ComponentImportSectionReader<'a>
sourcepub fn new(
data: &'a [u8],
offset: usize
) -> Result<ComponentImportSectionReader<'a>, BinaryReaderError>
pub fn new(
data: &'a [u8],
offset: usize
) -> Result<ComponentImportSectionReader<'a>, BinaryReaderError>
Constructs a new ComponentImportSectionReader
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<ComponentImport<'a>, BinaryReaderError>
pub fn read(&mut self) -> Result<ComponentImport<'a>, BinaryReaderError>
Reads content of the import section.
Examples
use wasmparser::ComponentImportSectionReader;
let data: &[u8] = &[0x01, 0x01, 0x41, 0x01, 0x66, 0x00, 0x00];
let mut reader = ComponentImportSectionReader::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 ComponentImportSectionReader<'a>
impl<'a> Clone for ComponentImportSectionReader<'a>
source§fn clone(&self) -> ComponentImportSectionReader<'a>
fn clone(&self) -> ComponentImportSectionReader<'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 ComponentImportSectionReader<'a>
impl<'a> IntoIterator for ComponentImportSectionReader<'a>
§type Item = Result<ComponentImport<'a>, BinaryReaderError>
type Item = Result<ComponentImport<'a>, BinaryReaderError>
The type of the elements being iterated over.
§type IntoIter = SectionIteratorLimited<ComponentImportSectionReader<'a>>
type IntoIter = SectionIteratorLimited<ComponentImportSectionReader<'a>>
Which kind of iterator are we turning this into?
source§fn into_iter(
self
) -> <ComponentImportSectionReader<'a> as IntoIterator>::IntoIter
fn into_iter(
self
) -> <ComponentImportSectionReader<'a> as IntoIterator>::IntoIter
Creates an iterator from a value. Read more
source§impl<'a> SectionReader for ComponentImportSectionReader<'a>
impl<'a> SectionReader for ComponentImportSectionReader<'a>
§type Item = ComponentImport<'a>
type Item = ComponentImport<'a>
The item returned by the reader.
source§fn read(
&mut self
) -> Result<<ComponentImportSectionReader<'a> as SectionReader>::Item, BinaryReaderError>
fn read(
&mut self
) -> Result<<ComponentImportSectionReader<'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