pub struct ComponentStartSectionReader<'a>(_);
Expand description
A reader for the start section of a WebAssembly component.
Implementations§
source§impl<'a> ComponentStartSectionReader<'a>
impl<'a> ComponentStartSectionReader<'a>
sourcepub fn new(
data: &'a [u8],
offset: usize
) -> Result<ComponentStartSectionReader<'a>, BinaryReaderError>
pub fn new( data: &'a [u8], offset: usize ) -> Result<ComponentStartSectionReader<'a>, BinaryReaderError>
Constructs a new ComponentStartSectionReader
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<ComponentStartFunction, BinaryReaderError>
pub fn read(&mut self) -> Result<ComponentStartFunction, BinaryReaderError>
Reads the start function from the section.
Examples
use wasmparser::ComponentStartSectionReader;
let mut reader = ComponentStartSectionReader::new(data, 0).unwrap();
let start = reader.read().expect("start");
println!("Start: {:?}", start);
Trait Implementations§
source§impl<'a> Clone for ComponentStartSectionReader<'a>
impl<'a> Clone for ComponentStartSectionReader<'a>
source§fn clone(&self) -> ComponentStartSectionReader<'a>
fn clone(&self) -> ComponentStartSectionReader<'a>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<'a> SectionReader for ComponentStartSectionReader<'a>
impl<'a> SectionReader for ComponentStartSectionReader<'a>
§type Item = ComponentStartFunction
type Item = ComponentStartFunction
The item returned by the reader.
source§fn read(
&mut self
) -> Result<<ComponentStartSectionReader<'a> as SectionReader>::Item, BinaryReaderError>
fn read( &mut self ) -> Result<<ComponentStartSectionReader<'a> as SectionReader>::Item, BinaryReaderError>
Reads an item from the section.
source§fn original_position(&self) -> usize
fn original_position(&self) -> usize
Gets the original position of the reader.
source§fn ensure_end(&self) -> Result<(), BinaryReaderError>
fn ensure_end(&self) -> Result<(), BinaryReaderError>
Ensures the reader is at the end of the section. Read more
Auto Trait Implementations§
impl<'a> RefUnwindSafe for ComponentStartSectionReader<'a>
impl<'a> Send for ComponentStartSectionReader<'a>
impl<'a> Sync for ComponentStartSectionReader<'a>
impl<'a> Unpin for ComponentStartSectionReader<'a>
impl<'a> UnwindSafe for ComponentStartSectionReader<'a>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more