Struct wasmtime_environ::wasm::wasmparser::InstanceSectionReader
source · [−]pub struct InstanceSectionReader<'a> { /* private fields */ }
Implementations
sourceimpl<'a> InstanceSectionReader<'a>
impl<'a> InstanceSectionReader<'a>
pub fn new(
data: &'a [u8],
offset: usize
) -> Result<InstanceSectionReader<'a>, BinaryReaderError>
pub fn original_position(&self) -> usize
pub fn get_count(&self) -> u32
pub fn read(&mut self) -> Result<Instance<'a>, BinaryReaderError>
Trait Implementations
sourceimpl<'a> Clone for InstanceSectionReader<'a>
impl<'a> Clone for InstanceSectionReader<'a>
sourcepub fn clone(&self) -> InstanceSectionReader<'a>
pub fn clone(&self) -> InstanceSectionReader<'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 more
sourceimpl<'a> IntoIterator for InstanceSectionReader<'a>
impl<'a> IntoIterator for InstanceSectionReader<'a>
type Item = Result<Instance<'a>, BinaryReaderError>
type Item = Result<Instance<'a>, BinaryReaderError>
The type of the elements being iterated over.
type IntoIter = SectionIteratorLimited<InstanceSectionReader<'a>>
type IntoIter = SectionIteratorLimited<InstanceSectionReader<'a>>
Which kind of iterator are we turning this into?
sourcepub fn into_iter(self) -> <InstanceSectionReader<'a> as IntoIterator>::IntoIter
pub fn into_iter(self) -> <InstanceSectionReader<'a> as IntoIterator>::IntoIter
Creates an iterator from a value. Read more
sourceimpl<'a> SectionReader for InstanceSectionReader<'a>
impl<'a> SectionReader for InstanceSectionReader<'a>
type Item = Instance<'a>
pub fn read(
&mut self
) -> Result<<InstanceSectionReader<'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 InstanceSectionReader<'a>
impl<'a> SectionWithLimitedItems for InstanceSectionReader<'a>
Auto Trait Implementations
impl<'a> RefUnwindSafe for InstanceSectionReader<'a>
impl<'a> Send for InstanceSectionReader<'a>
impl<'a> Sync for InstanceSectionReader<'a>
impl<'a> Unpin for InstanceSectionReader<'a>
impl<'a> UnwindSafe for InstanceSectionReader<'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
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more