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