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
sourceimpl 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
sourceimpl Debug for ModuleContext
impl Debug for ModuleContext
sourceimpl Default for ModuleContext
impl Default for ModuleContext
sourcefn 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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more