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