pub type CoreTypeSectionReader<'a> = SectionLimited<'a, CoreType<'a>>;Available on crate feature
component-model only.Expand description
A reader for the core type section of a WebAssembly component.
§Examples
use inf_wasmparser::{CoreTypeSectionReader, BinaryReader};
let reader = BinaryReader::new(data, 0);
let mut reader = CoreTypeSectionReader::new(reader).unwrap();
for ty in reader {
println!("Type {:?}", ty.expect("type"));
}Aliased Type§
pub struct CoreTypeSectionReader<'a> { /* private fields */ }