Struct wasmparser::CoreTypeSectionReader
source · [−]pub struct CoreTypeSectionReader<'a> { /* private fields */ }
Expand description
A reader for the core type section of a WebAssembly component.
Implementations
sourceimpl<'a> CoreTypeSectionReader<'a>
impl<'a> CoreTypeSectionReader<'a>
sourcepub fn new(data: &'a [u8], offset: usize) -> Result<Self>
pub fn new(data: &'a [u8], offset: usize) -> Result<Self>
Constructs a new CoreTypeSectionReader
for the given data and offset.
sourcepub fn original_position(&self) -> usize
pub fn original_position(&self) -> usize
Gets the original position of the reader.
sourcepub fn read(&mut self) -> Result<CoreType<'a>>
pub fn read(&mut self) -> Result<CoreType<'a>>
Reads content of the type section.
Examples
use wasmparser::CoreTypeSectionReader;
let data: &[u8] = &[0x01, 0x60, 0x00, 0x00];
let mut reader = CoreTypeSectionReader::new(data, 0).unwrap();
for _ in 0..reader.get_count() {
let ty = reader.read().expect("type");
println!("Type {:?}", ty);
}
Trait Implementations
sourceimpl<'a> Clone for CoreTypeSectionReader<'a>
impl<'a> Clone for CoreTypeSectionReader<'a>
sourcefn clone(&self) -> CoreTypeSectionReader<'a>
fn clone(&self) -> CoreTypeSectionReader<'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 CoreTypeSectionReader<'a>
impl<'a> IntoIterator for CoreTypeSectionReader<'a>
sourcefn into_iter(self) -> Self::IntoIter
fn into_iter(self) -> Self::IntoIter
Implements iterator over the type section.
Examples
use wasmparser::CoreTypeSectionReader;
let mut reader = CoreTypeSectionReader::new(data, 0).unwrap();
for ty in reader {
println!("Type {:?}", ty.expect("type"));
}
type IntoIter = SectionIteratorLimited<Self>
type IntoIter = SectionIteratorLimited<Self>
Which kind of iterator are we turning this into?
sourceimpl<'a> SectionReader for CoreTypeSectionReader<'a>
impl<'a> SectionReader for CoreTypeSectionReader<'a>
sourcefn original_position(&self) -> usize
fn original_position(&self) -> usize
Gets the original position of the reader.
sourcefn ensure_end(&self) -> Result<()>
fn ensure_end(&self) -> Result<()>
Ensures the reader is at the end of the section. Read more
sourceimpl<'a> SectionWithLimitedItems for CoreTypeSectionReader<'a>
impl<'a> SectionWithLimitedItems for CoreTypeSectionReader<'a>
Auto Trait Implementations
impl<'a> RefUnwindSafe for CoreTypeSectionReader<'a>
impl<'a> Send for CoreTypeSectionReader<'a>
impl<'a> Sync for CoreTypeSectionReader<'a>
impl<'a> Unpin for CoreTypeSectionReader<'a>
impl<'a> UnwindSafe for CoreTypeSectionReader<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
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.
sourcefn clone_into(&self, target: &mut T)
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