Struct wasmtime_environ::wasm::wasmparser::TypeSectionReader
source · [−]pub struct TypeSectionReader<'a> { /* private fields */ }
Implementations
sourceimpl<'a> TypeSectionReader<'a>
impl<'a> TypeSectionReader<'a>
pub fn new(
data: &'a [u8],
offset: usize
) -> Result<TypeSectionReader<'a>, BinaryReaderError>
pub fn original_position(&self) -> usize
pub fn get_count(&self) -> u32
sourcepub fn read(&mut self) -> Result<TypeDef<'a>, BinaryReaderError>
pub fn read(&mut self) -> Result<TypeDef<'a>, BinaryReaderError>
Reads content of the type section.
Examples
use wasmparser::TypeSectionReader;
let mut type_reader = TypeSectionReader::new(data, 0).unwrap();
for _ in 0..type_reader.get_count() {
let ty = type_reader.read().expect("type");
println!("Type {:?}", ty);
}
Trait Implementations
sourceimpl<'a> Clone for TypeSectionReader<'a>
impl<'a> Clone for TypeSectionReader<'a>
sourcepub fn clone(&self) -> TypeSectionReader<'a>
pub fn clone(&self) -> TypeSectionReader<'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 TypeSectionReader<'a>
impl<'a> IntoIterator for TypeSectionReader<'a>
sourcepub fn into_iter(self) -> <TypeSectionReader<'a> as IntoIterator>::IntoIter
pub fn into_iter(self) -> <TypeSectionReader<'a> as IntoIterator>::IntoIter
Implements iterator over the type section.
Examples
use wasmparser::TypeSectionReader;
let mut type_reader = TypeSectionReader::new(data, 0).unwrap();
for ty in type_reader {
println!("Type {:?}", ty);
}
type Item = Result<TypeDef<'a>, BinaryReaderError>
type Item = Result<TypeDef<'a>, BinaryReaderError>
The type of the elements being iterated over.
type IntoIter = SectionIteratorLimited<TypeSectionReader<'a>>
type IntoIter = SectionIteratorLimited<TypeSectionReader<'a>>
Which kind of iterator are we turning this into?
sourceimpl<'a> SectionReader for TypeSectionReader<'a>
impl<'a> SectionReader for TypeSectionReader<'a>
type Item = TypeDef<'a>
pub fn read(
&mut self
) -> Result<<TypeSectionReader<'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 TypeSectionReader<'a>
impl<'a> SectionWithLimitedItems for TypeSectionReader<'a>
Auto Trait Implementations
impl<'a> RefUnwindSafe for TypeSectionReader<'a>
impl<'a> Send for TypeSectionReader<'a>
impl<'a> Sync for TypeSectionReader<'a>
impl<'a> Unpin for TypeSectionReader<'a>
impl<'a> UnwindSafe for TypeSectionReader<'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