pub struct ValidatorResources(_);
Expand description

The implementation of WasmModuleResources used by Validator.

Trait Implementations§

source§

impl WasmModuleResources for ValidatorResources

§

type FuncType = FuncType

The function type used for validation.
source§

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

Returns the table at given index if any.
source§

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

Returns the linear memory at given index.
source§

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

Returns the tag at given index.
source§

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

Returns the global variable at given index.
source§

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

Returns the FuncType associated with the given type index.
source§

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

Returns the type index associated with the given function index. type_of_function = func_type_at(type_index_of_function)
source§

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

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

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

Check a value type. This requires using func_type_at to check references
source§

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

Returns the element type at the given index.
source§

fn matches(&self, t1: ValType, t2: ValType) -> bool

Under the function references proposal, returns whether t1 <= t2. Otherwise, returns whether t1 == t2
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_heap_type( &self, heap_type: HeapType, features: &WasmFeatures, offset: usize ) -> Result<(), BinaryReaderError>

Checks that a HeapType is valid, notably its function index if one is used.

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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 Twhere 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 Twhere 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.