Struct wasmi_validation::context::ModuleContext
source · pub struct ModuleContext {
pub memories: Vec<MemoryType>,
pub tables: Vec<TableType>,
pub globals: Vec<GlobalType>,
pub types: Vec<FunctionType>,
pub func_type_indexes: Vec<u32>,
}
Fields§
§memories: Vec<MemoryType>
§tables: Vec<TableType>
§globals: Vec<GlobalType>
§types: Vec<FunctionType>
§func_type_indexes: Vec<u32>
Implementations§
source§impl ModuleContext
impl ModuleContext
pub fn memories(&self) -> &[MemoryType]
pub fn tables(&self) -> &[TableType]
pub fn globals(&self) -> &[GlobalType]
pub fn types(&self) -> &[FunctionType]
pub fn func_type_indexes(&self) -> &[u32]
pub fn require_memory(&self, idx: u32) -> Result<(), Error>
pub fn require_table(&self, idx: u32) -> Result<&TableType, Error>
pub fn require_function( &self, idx: u32 ) -> Result<(&[ValueType], BlockType), Error>
pub fn require_function_type( &self, idx: u32 ) -> Result<(&[ValueType], BlockType), Error>
pub fn require_global( &self, idx: u32, mutability: Option<bool> ) -> Result<&GlobalType, Error>
Trait Implementations§
source§impl Debug for ModuleContext
impl Debug for ModuleContext
source§impl Default for ModuleContext
impl Default for ModuleContext
source§fn default() -> ModuleContext
fn default() -> ModuleContext
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for ModuleContext
impl Send for ModuleContext
impl Sync for ModuleContext
impl Unpin for ModuleContext
impl UnwindSafe for ModuleContext
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