Struct wasmparser::GlobalSectionReader
source · [−]pub struct GlobalSectionReader<'a> { /* private fields */ }
Expand description
A reader for the global section of a WebAssembly module.
Implementations
sourceimpl<'a> GlobalSectionReader<'a>
impl<'a> GlobalSectionReader<'a>
sourcepub fn new(data: &'a [u8], offset: usize) -> Result<GlobalSectionReader<'a>>
pub fn new(data: &'a [u8], offset: usize) -> Result<GlobalSectionReader<'a>>
Constructs a new GlobalSectionReader
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<'b>(&mut self) -> Result<Global<'b>> where
'a: 'b,
pub fn read<'b>(&mut self) -> Result<Global<'b>> where
'a: 'b,
Reads content of the global section.
Examples
use wasmparser::GlobalSectionReader;
let mut global_reader = GlobalSectionReader::new(data, 0).unwrap();
for _ in 0..global_reader.get_count() {
let global = global_reader.read().expect("global");
println!("Global: {:?}", global);
let mut init_expr_reader = global.init_expr.get_binary_reader();
let op = init_expr_reader.read_operator().expect("op");
println!("Init const: {:?}", op);
}
Trait Implementations
sourceimpl<'a> Clone for GlobalSectionReader<'a>
impl<'a> Clone for GlobalSectionReader<'a>
sourcefn clone(&self) -> GlobalSectionReader<'a>
fn clone(&self) -> GlobalSectionReader<'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 GlobalSectionReader<'a>
impl<'a> IntoIterator for GlobalSectionReader<'a>
type Item = Result<Global<'a>, BinaryReaderError>
type Item = Result<Global<'a>, BinaryReaderError>
The type of the elements being iterated over.
type IntoIter = SectionIteratorLimited<GlobalSectionReader<'a>>
type IntoIter = SectionIteratorLimited<GlobalSectionReader<'a>>
Which kind of iterator are we turning this into?
sourceimpl<'a> SectionReader for GlobalSectionReader<'a>
impl<'a> SectionReader for GlobalSectionReader<'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 GlobalSectionReader<'a>
impl<'a> SectionWithLimitedItems for GlobalSectionReader<'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 GlobalSectionReader<'a>
impl<'a> Send for GlobalSectionReader<'a>
impl<'a> Sync for GlobalSectionReader<'a>
impl<'a> Unpin for GlobalSectionReader<'a>
impl<'a> UnwindSafe for GlobalSectionReader<'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