Struct wasmparser_nostd::TagSectionReader
source · [−]pub struct TagSectionReader<'a> { /* private fields */ }
Expand description
A reader for the tags section of a WebAssembly module.
Implementations
sourceimpl<'a> TagSectionReader<'a>
impl<'a> TagSectionReader<'a>
sourcepub fn new(data: &'a [u8], offset: usize) -> Result<TagSectionReader<'a>>
pub fn new(data: &'a [u8], offset: usize) -> Result<TagSectionReader<'a>>
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.
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 moresourceimpl<'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?
sourceimpl<'a> SectionReader for TagSectionReader<'a>
impl<'a> SectionReader for TagSectionReader<'a>
sourcefn original_position(&self) -> usize
fn original_position(&self) -> usize
Gets the original position of the reader.
sourcefn ensure_end(&self) -> Result<()>
fn ensure_end(&self) -> Result<()>
Ensures the reader is at the end of the section. Read more
sourceimpl<'a> SectionWithLimitedItems for TagSectionReader<'a>
impl<'a> SectionWithLimitedItems for TagSectionReader<'a>
sourcefn into_iter_with_offsets(self) -> IntoIterWithOffsets<Self>ⓘNotable traits for IntoIterWithOffsets<R>impl<R> Iterator for IntoIterWithOffsets<R>where
R: SectionWithLimitedItems, type Item = Result<(usize, R::Item)>;
where
Self: Sized,
fn into_iter_with_offsets(self) -> IntoIterWithOffsets<Self>ⓘNotable traits for IntoIterWithOffsets<R>impl<R> Iterator for IntoIterWithOffsets<R>where
R: SectionWithLimitedItems, type Item = Result<(usize, R::Item)>;
where
Self: Sized,
R: SectionWithLimitedItems, type Item = Result<(usize, R::Item)>;
Returns an iterator over the items within this section where the offset
in the original section is provided with the item. Read more
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 Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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