Struct wasmtime_environ::wasmparser::NameSectionReader
source · pub struct NameSectionReader<'a> { /* private fields */ }
Expand description
A reader for the name custom section of a WebAssembly module.
Implementations§
source§impl<'a> NameSectionReader<'a>
impl<'a> NameSectionReader<'a>
sourcepub fn new(
data: &'a [u8],
offset: usize
) -> Result<NameSectionReader<'a>, BinaryReaderError>
pub fn new( data: &'a [u8], offset: usize ) -> Result<NameSectionReader<'a>, BinaryReaderError>
Constructs a new NameSectionReader
from 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<'b>(&mut self) -> Result<Name<'b>, BinaryReaderError>where
'a: 'b,
pub fn read<'b>(&mut self) -> Result<Name<'b>, BinaryReaderError>where 'a: 'b,
Reads a name from the section.
Trait Implementations§
source§impl<'a> IntoIterator for NameSectionReader<'a>
impl<'a> IntoIterator for NameSectionReader<'a>
§type Item = Result<Name<'a>, BinaryReaderError>
type Item = Result<Name<'a>, BinaryReaderError>
The type of the elements being iterated over.
§type IntoIter = SectionIterator<NameSectionReader<'a>>
type IntoIter = SectionIterator<NameSectionReader<'a>>
Which kind of iterator are we turning this into?
source§fn into_iter(self) -> <NameSectionReader<'a> as IntoIterator>::IntoIter
fn into_iter(self) -> <NameSectionReader<'a> as IntoIterator>::IntoIter
Creates an iterator from a value. Read more
source§impl<'a> SectionReader for NameSectionReader<'a>
impl<'a> SectionReader for NameSectionReader<'a>
source§fn read(
&mut self
) -> Result<<NameSectionReader<'a> as SectionReader>::Item, BinaryReaderError>
fn read( &mut self ) -> Result<<NameSectionReader<'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
Auto Trait Implementations§
impl<'a> RefUnwindSafe for NameSectionReader<'a>
impl<'a> Send for NameSectionReader<'a>
impl<'a> Sync for NameSectionReader<'a>
impl<'a> Unpin for NameSectionReader<'a>
impl<'a> UnwindSafe for NameSectionReader<'a>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more