Struct wasmparser::ValidatorResources

source ·
pub struct ValidatorResources(/* private fields */);
Expand description

The implementation of WasmModuleResources used by Validator.

Trait Implementations§

source§

impl Debug for ValidatorResources

source§

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

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

impl WasmModuleResources for ValidatorResources

source§

fn table_at(&self, at: u32) -> Option<TableType>

Returns the table at given index if any. Read more
source§

fn memory_at(&self, at: u32) -> Option<MemoryType>

Returns the linear memory at given index.
source§

fn tag_at(&self, at: u32) -> Option<&FuncType>

Returns the tag at given index. Read more
source§

fn global_at(&self, at: u32) -> Option<GlobalType>

Returns the global variable at given index. Read more
source§

fn sub_type_at(&self, at: u32) -> Option<&SubType>

Returns the SubType associated with the given type index. Read more
source§

fn type_id_of_function(&self, at: u32) -> Option<CoreTypeId>

Returns the type id associated with the given function index.
source§

fn type_of_function(&self, at: u32) -> Option<&FuncType>

Returns the FuncType associated with the given function index. Read more
source§

fn check_heap_type(&self, t: &mut HeapType, offset: usize) -> Result<()>

Checks that a HeapType is valid and then additionally place it in its canonical form. Read more
source§

fn top_type(&self, heap_type: &HeapType) -> HeapType

Get the top type for the given heap type.
source§

fn element_type_at(&self, at: u32) -> Option<RefType>

Returns the element type at the given index. Read more
source§

fn is_subtype(&self, a: ValType, b: ValType) -> bool

Is a a subtype of b?
source§

fn element_count(&self) -> u32

Returns the number of elements.
source§

fn data_count(&self) -> Option<u32>

Returns the number of bytes in the Wasm data section.
source§

fn is_function_referenced(&self, idx: u32) -> bool

Returns whether the function index is referenced in the module anywhere outside of the start/function sections.
source§

fn check_value_type( &self, t: &mut ValType, features: &WasmFeatures, offset: usize ) -> Result<(), BinaryReaderError>

Check and canonicalize a value type. Read more
source§

fn check_ref_type( &self, ref_type: &mut RefType, offset: usize ) -> Result<(), BinaryReaderError>

Check and canonicalize a reference type.

Auto Trait Implementations§

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, 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.