Struct wasmparser::LinkingSectionReader
source · pub struct LinkingSectionReader<'a> { /* private fields */ }
Expand description
A reader for the linking custom section of a WebAssembly module.
Implementations§
source§impl<'a> LinkingSectionReader<'a>
impl<'a> LinkingSectionReader<'a>
sourcepub fn new(data: &'a [u8], offset: usize) -> Result<LinkingSectionReader<'a>>
pub fn new(data: &'a [u8], offset: usize) -> Result<LinkingSectionReader<'a>>
Constructs a new LinkingSectionReader
for the given data and offset.
sourcepub fn original_position(&self) -> usize
pub fn original_position(&self) -> usize
Gets the original position of the reader.
sourcepub fn read<'b>(&mut self) -> Result<LinkingType>where
'a: 'b,
pub fn read<'b>(&mut self) -> Result<LinkingType>where 'a: 'b,
Reads an item from the section.
Trait Implementations§
source§impl<'a> IntoIterator for LinkingSectionReader<'a>
impl<'a> IntoIterator for LinkingSectionReader<'a>
§type Item = Result<LinkingType, BinaryReaderError>
type Item = Result<LinkingType, BinaryReaderError>
The type of the elements being iterated over.
§type IntoIter = SectionIteratorLimited<LinkingSectionReader<'a>>
type IntoIter = SectionIteratorLimited<LinkingSectionReader<'a>>
Which kind of iterator are we turning this into?
source§impl<'a> SectionReader for LinkingSectionReader<'a>
impl<'a> SectionReader for LinkingSectionReader<'a>
§type Item = LinkingType
type Item = LinkingType
The item returned by the reader.
source§fn original_position(&self) -> usize
fn original_position(&self) -> usize
Gets the original position of the reader.
source§impl<'a> SectionWithLimitedItems for LinkingSectionReader<'a>
impl<'a> SectionWithLimitedItems for LinkingSectionReader<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for LinkingSectionReader<'a>
impl<'a> Send for LinkingSectionReader<'a>
impl<'a> Sync for LinkingSectionReader<'a>
impl<'a> Unpin for LinkingSectionReader<'a>
impl<'a> UnwindSafe for LinkingSectionReader<'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