Struct wasmi_validation::context::ModuleContext [−][src]
Fields
memories: Vec<MemoryType>tables: Vec<TableType>globals: Vec<GlobalType>types: Vec<FunctionType>func_type_indexes: Vec<u32>Implementations
impl ModuleContext[src]
pub fn memories(&self) -> &[MemoryType][src]
pub fn tables(&self) -> &[TableType][src]
pub fn globals(&self) -> &[GlobalType][src]
pub fn types(&self) -> &[FunctionType][src]
pub fn func_type_indexes(&self) -> &[u32][src]
pub fn require_memory(&self, idx: u32) -> Result<(), Error>[src]
pub fn require_table(&self, idx: u32) -> Result<&TableType, Error>[src]
pub fn require_function(
&self,
idx: u32
) -> Result<(&[ValueType], BlockType), Error>[src]
&self,
idx: u32
) -> Result<(&[ValueType], BlockType), Error>
pub fn require_function_type(
&self,
idx: u32
) -> Result<(&[ValueType], BlockType), Error>[src]
&self,
idx: u32
) -> Result<(&[ValueType], BlockType), Error>
pub fn require_global(
&self,
idx: u32,
mutability: Option<bool>
) -> Result<&GlobalType, Error>[src]
&self,
idx: u32,
mutability: Option<bool>
) -> Result<&GlobalType, Error>
Trait Implementations
impl Debug for ModuleContext[src]
impl Default for ModuleContext[src]
fn default() -> ModuleContext[src]
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
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,