Struct wasmtime_environ::wasm::wasmparser::LinkingSectionReader
source · [−]pub struct LinkingSectionReader<'a> { /* private fields */ }
Implementations
sourceimpl<'a> LinkingSectionReader<'a>
impl<'a> LinkingSectionReader<'a>
pub fn new(
data: &'a [u8],
offset: usize
) -> Result<LinkingSectionReader<'a>, BinaryReaderError>
pub fn get_count(&self) -> u32
pub fn original_position(&self) -> usize
pub fn read<'b>(&mut self) -> Result<LinkingType, BinaryReaderError> where
'a: 'b,
Trait Implementations
sourceimpl<'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?
sourcepub fn into_iter(self) -> <LinkingSectionReader<'a> as IntoIterator>::IntoIter
pub fn into_iter(self) -> <LinkingSectionReader<'a> as IntoIterator>::IntoIter
Creates an iterator from a value. Read more
sourceimpl<'a> SectionReader for LinkingSectionReader<'a>
impl<'a> SectionReader for LinkingSectionReader<'a>
type Item = LinkingType
pub fn read(
&mut self
) -> Result<<LinkingSectionReader<'a> as SectionReader>::Item, BinaryReaderError>
pub fn eof(&self) -> bool
pub fn original_position(&self) -> usize
pub fn range(&self) -> Range
fn ensure_end(&self) -> Result<(), BinaryReaderError>
sourceimpl<'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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more