Struct wasmi_validation::context::ModuleContext[][src]

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

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]

pub fn require_function_type(
    &self,
    idx: u32
) -> Result<(&[ValueType], BlockType), Error>
[src]

pub fn require_global(
    &self,
    idx: u32,
    mutability: Option<bool>
) -> Result<&GlobalType, Error>
[src]

Trait Implementations

impl Debug for ModuleContext[src]

impl Default for 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]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.