Struct wasmparser::AliasSectionReader
source · [−]pub struct AliasSectionReader<'a> { /* private fields */ }
Expand description
A reader for the core alias section of a WebAssembly component.
Implementations
sourceimpl<'a> AliasSectionReader<'a>
impl<'a> AliasSectionReader<'a>
sourcepub fn new(data: &'a [u8], offset: usize) -> Result<Self>
pub fn new(data: &'a [u8], offset: usize) -> Result<Self>
Constructs a new AliasSectionReader
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<Alias<'a>>
pub fn read(&mut self) -> Result<Alias<'a>>
Reads content of the core alias section.
Examples
use wasmparser::AliasSectionReader;
let data: &[u8] = &[0x01, 0x00, 0x00, 0x00, 0x03, b'f', b'o', b'o'];
let mut reader = AliasSectionReader::new(data, 0).unwrap();
for _ in 0..reader.get_count() {
let alias = reader.read().expect("alias");
println!("Alias: {:?}", alias);
}
Trait Implementations
sourceimpl<'a> Clone for AliasSectionReader<'a>
impl<'a> Clone for AliasSectionReader<'a>
sourcefn clone(&self) -> AliasSectionReader<'a>
fn clone(&self) -> AliasSectionReader<'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 AliasSectionReader<'a>
impl<'a> IntoIterator for AliasSectionReader<'a>
sourceimpl<'a> SectionReader for AliasSectionReader<'a>
impl<'a> SectionReader for AliasSectionReader<'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 AliasSectionReader<'a>
impl<'a> SectionWithLimitedItems for AliasSectionReader<'a>
Auto Trait Implementations
impl<'a> RefUnwindSafe for AliasSectionReader<'a>
impl<'a> Send for AliasSectionReader<'a>
impl<'a> Sync for AliasSectionReader<'a>
impl<'a> Unpin for AliasSectionReader<'a>
impl<'a> UnwindSafe for AliasSectionReader<'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