Enum wasmparser::Instance
source · [−]pub enum Instance<'a> {
Instantiate {
module_index: u32,
args: Box<[InstantiationArg<'a>]>,
},
FromExports(Box<[Export<'a>]>),
}
Expand description
Represents an instance of a WebAssembly module.
Variants
Instantiate
Fields
module_index: u32
The module index.
args: Box<[InstantiationArg<'a>]>
The module’s instantiation arguments.
The instance is from instantiating a WebAssembly module.
FromExports(Box<[Export<'a>]>)
The instance is a from exporting local items.
Trait Implementations
Auto Trait Implementations
impl<'a> RefUnwindSafe for Instance<'a>
impl<'a> Send for Instance<'a>
impl<'a> Sync for Instance<'a>
impl<'a> Unpin for Instance<'a>
impl<'a> UnwindSafe for Instance<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more