pub struct ComponentCanonicalSectionReader<'a> { /* private fields */ }
Expand description
A reader for the canonical section of a WebAssembly component.
Implementations
sourceimpl<'a> ComponentCanonicalSectionReader<'a>
impl<'a> ComponentCanonicalSectionReader<'a>
sourcepub fn new(data: &'a [u8], offset: usize) -> Result<Self>
pub fn new(data: &'a [u8], offset: usize) -> Result<Self>
Constructs a new ComponentFunctionSectionReader
for the given data and offset.
sourcepub fn original_position(&self) -> usize
pub fn original_position(&self) -> usize
Gets the original position of the section reader.
sourcepub fn read(&mut self) -> Result<CanonicalFunction>
pub fn read(&mut self) -> Result<CanonicalFunction>
Reads function type index from the function section.
Examples
use wasmparser_nostd::ComponentCanonicalSectionReader;
let mut reader = ComponentCanonicalSectionReader::new(data, 0).unwrap();
for _ in 0..reader.get_count() {
let func = reader.read().expect("func");
println!("Function: {:?}", func);
}
Trait Implementations
sourceimpl<'a> Clone for ComponentCanonicalSectionReader<'a>
impl<'a> Clone for ComponentCanonicalSectionReader<'a>
sourcefn clone(&self) -> ComponentCanonicalSectionReader<'a>
fn clone(&self) -> ComponentCanonicalSectionReader<'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 moresourceimpl<'a> IntoIterator for ComponentCanonicalSectionReader<'a>
impl<'a> IntoIterator for ComponentCanonicalSectionReader<'a>
type Item = Result<CanonicalFunction, BinaryReaderError>
type Item = Result<CanonicalFunction, BinaryReaderError>
The type of the elements being iterated over.
type IntoIter = SectionIteratorLimited<ComponentCanonicalSectionReader<'a>>
type IntoIter = SectionIteratorLimited<ComponentCanonicalSectionReader<'a>>
Which kind of iterator are we turning this into?
sourceimpl<'a> SectionReader for ComponentCanonicalSectionReader<'a>
impl<'a> SectionReader for ComponentCanonicalSectionReader<'a>
type Item = CanonicalFunction
type Item = CanonicalFunction
The item returned by the reader.
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 ComponentCanonicalSectionReader<'a>
impl<'a> SectionWithLimitedItems for ComponentCanonicalSectionReader<'a>
sourcefn into_iter_with_offsets(self) -> IntoIterWithOffsets<Self>ⓘNotable traits for IntoIterWithOffsets<R>impl<R> Iterator for IntoIterWithOffsets<R>where
R: SectionWithLimitedItems, type Item = Result<(usize, R::Item)>;
where
Self: Sized,
fn into_iter_with_offsets(self) -> IntoIterWithOffsets<Self>ⓘNotable traits for IntoIterWithOffsets<R>impl<R> Iterator for IntoIterWithOffsets<R>where
R: SectionWithLimitedItems, type Item = Result<(usize, R::Item)>;
where
Self: Sized,
R: SectionWithLimitedItems, type Item = Result<(usize, R::Item)>;
Returns an iterator over the items within this section where the offset
in the original section is provided with the item. Read more
Auto Trait Implementations
impl<'a> RefUnwindSafe for ComponentCanonicalSectionReader<'a>
impl<'a> Send for ComponentCanonicalSectionReader<'a>
impl<'a> Sync for ComponentCanonicalSectionReader<'a>
impl<'a> Unpin for ComponentCanonicalSectionReader<'a>
impl<'a> UnwindSafe for ComponentCanonicalSectionReader<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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