Struct wasmparser::ValidatorResources
source · pub struct ValidatorResources(_);
Expand description
The implementation of WasmModuleResources
used by
Validator
.
Trait Implementations§
source§impl WasmModuleResources for ValidatorResources
impl WasmModuleResources for ValidatorResources
source§fn global_at(&self, at: u32) -> Option<GlobalType>
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>
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>
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<ValType>
fn element_type_at(&self, at: u32) -> Option<ValType>
Returns the element type at the given index.
source§fn element_count(&self) -> u32
fn element_count(&self) -> u32
Returns the number of elements.
source§fn data_count(&self) -> Option<u32>
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
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§
impl RefUnwindSafe for ValidatorResources
impl Send for ValidatorResources
impl Sync for ValidatorResources
impl Unpin for ValidatorResources
impl UnwindSafe for ValidatorResources
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more