Struct wasmparser::SectionLimited

source ·
pub struct SectionLimited<'a, T> { /* private fields */ }
Expand description

A generic structure for reading a section of a WebAssembly binary which has a limited number of items within it.

Many WebAssembly sections are a count of items followed by that many items. This helper structure can be used to parse these sections and provides an iteration-based API for reading the contents.

Note that this always implements the Clone trait to represent the ability to parse the section multiple times.

Implementations§

source§

impl<'a> SectionLimited<'a, RecGroup>

source

pub fn into_iter_err_on_gc_types( self ) -> impl Iterator<Item = Result<FuncType>> + 'a

Returns an iterator over this type section which will only yield function types and any usage of GC types from the GC proposal will be translated into an error.

source§

impl<'a, T> SectionLimited<'a, T>

source

pub fn new(data: &'a [u8], offset: usize) -> Result<Self>

Creates a new section reader from the provided contents.

The data provided here is the data of the section itself that will be parsed. The offset argument is the byte offset, in the original wasm binary, that the section was found. The offset argument is used for error reporting.

§Errors

Returns an error if a 32-bit count couldn’t be read from the data.

source

pub fn count(&self) -> u32

Returns the count of total items within this section.

source

pub fn original_position(&self) -> usize

Returns whether the original byte offset of this section.

source

pub fn range(&self) -> Range<usize>

Returns the range, as byte offsets, of this section within the original wasm binary.

source

pub fn into_iter_with_offsets(self) -> SectionLimitedIntoIterWithOffsets<'a, T>
where T: FromReader<'a>,

Returns an iterator which yields not only each item in this section but additionally the offset of each item within the section.

Trait Implementations§

source§

impl<T> Clone for SectionLimited<'_, T>

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<T> Debug for SectionLimited<'_, T>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'a, T> IntoIterator for SectionLimited<'a, T>
where T: FromReader<'a>,

§

type Item = Result<T, BinaryReaderError>

The type of the elements being iterated over.
§

type IntoIter = SectionLimitedIntoIter<'a, T>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more

Auto Trait Implementations§

§

impl<'a, T> Freeze for SectionLimited<'a, T>

§

impl<'a, T> RefUnwindSafe for SectionLimited<'a, T>
where T: RefUnwindSafe,

§

impl<'a, T> Send for SectionLimited<'a, T>
where T: Send,

§

impl<'a, T> Sync for SectionLimited<'a, T>
where T: Sync,

§

impl<'a, T> Unpin for SectionLimited<'a, T>
where T: Unpin,

§

impl<'a, T> UnwindSafe for SectionLimited<'a, T>
where T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.