Struct wasmparser::NameSectionReader
source · [−]pub struct NameSectionReader<'a> { /* private fields */ }
Expand description
A reader for the name custom section of a WebAssembly module.
Implementations
sourceimpl<'a> NameSectionReader<'a>
impl<'a> NameSectionReader<'a>
Trait Implementations
sourceimpl<'a> IntoIterator for NameSectionReader<'a>
impl<'a> IntoIterator for NameSectionReader<'a>
type IntoIter = SectionIterator<NameSectionReader<'a>>
type IntoIter = SectionIterator<NameSectionReader<'a>>
Which kind of iterator are we turning this into?
sourceimpl<'a> SectionReader for NameSectionReader<'a>
impl<'a> SectionReader for NameSectionReader<'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
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
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