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 event_at(&self, at: u32) -> Option<&Self::FuncType>

Returns the event 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_of_function(&self, at: u32) -> Option<&Self::FuncType>

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

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

Returns the element type at the given index.
source§

fn element_count(&self) -> u32

Returns the number of elements.
source§

fn data_count(&self) -> 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.

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.