Struct wasmtime_environ::wasmparser::TypeSectionReader [−][src]
pub struct TypeSectionReader<'a> { /* fields omitted */ }
Implementations
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
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?
pub fn read(
&mut self
) -> Result<<TypeSectionReader<'a> as SectionReader>::Item, BinaryReaderError>
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
Mutably borrows from an owned value. Read more