Struct wasmparser::ComponentStartSectionReader
source · [−]pub struct ComponentStartSectionReader<'a>(_);
Expand description
A reader for the start section of a WebAssembly component.
Implementations
sourceimpl<'a> ComponentStartSectionReader<'a>
impl<'a> ComponentStartSectionReader<'a>
sourcepub fn new(data: &'a [u8], offset: usize) -> Result<Self>
pub fn new(data: &'a [u8], offset: usize) -> Result<Self>
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>
pub fn read(&mut self) -> Result<ComponentStartFunction>
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
sourceimpl<'a> Clone for ComponentStartSectionReader<'a>
impl<'a> Clone for ComponentStartSectionReader<'a>
sourcefn clone(&self) -> ComponentStartSectionReader<'a>
fn clone(&self) -> ComponentStartSectionReader<'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> SectionReader for ComponentStartSectionReader<'a>
impl<'a> SectionReader for ComponentStartSectionReader<'a>
type Item = ComponentStartFunction
type Item = ComponentStartFunction
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
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
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