Struct wasmtime_environ::wasmparser::TagSectionReader
source · [−]pub struct TagSectionReader<'a> { /* private fields */ }
Implementations
sourceimpl<'a> TagSectionReader<'a>
impl<'a> TagSectionReader<'a>
pub fn new(
data: &'a [u8],
offset: usize
) -> Result<TagSectionReader<'a>, BinaryReaderError>
pub fn original_position(&self) -> usize
pub fn get_count(&self) -> u32
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 tag_reader = TagSectionReader::new(data, 0).unwrap();
for _ in 0..tag_reader.get_count() {
let et = tag_reader.read().expect("tag_type");
println!("Tag: {:?}", et);
}
Trait Implementations
sourceimpl<'a> Clone for TagSectionReader<'a>
impl<'a> Clone for TagSectionReader<'a>
sourcefn clone(&self) -> TagSectionReader<'a>
fn clone(&self) -> TagSectionReader<'a>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<'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?
sourcefn 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
sourceimpl<'a> SectionReader for TagSectionReader<'a>
impl<'a> SectionReader for TagSectionReader<'a>
type Item = TagType
fn read(
&mut self
) -> Result<<TagSectionReader<'a> as SectionReader>::Item, BinaryReaderError>
fn eof(&self) -> bool
fn original_position(&self) -> usize
fn range(&self) -> Range
fn ensure_end(&self) -> Result<(), BinaryReaderError>
sourceimpl<'a> SectionWithLimitedItems for TagSectionReader<'a>
impl<'a> SectionWithLimitedItems for TagSectionReader<'a>
Auto Trait Implementations
impl<'a> RefUnwindSafe for TagSectionReader<'a>
impl<'a> Send for TagSectionReader<'a>
impl<'a> Sync for TagSectionReader<'a>
impl<'a> Unpin for TagSectionReader<'a>
impl<'a> UnwindSafe for TagSectionReader<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more