Struct winch_environ::FuncEnv
source · pub struct FuncEnv<'a> {
pub module: &'a Module,
pub types: &'a Types,
pub isa: &'a Box<dyn TargetIsa>,
}
Expand description
Function environment containing module and runtime specific information.
Fields§
§module: &'a Module
The translated WebAssembly module.
types: &'a Types
Type information about a module, once it has been validated.
isa: &'a Box<dyn TargetIsa>
The current ISA.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for FuncEnv<'a>
impl<'a> Send for FuncEnv<'a>
impl<'a> Sync for FuncEnv<'a>
impl<'a> Unpin for FuncEnv<'a>
impl<'a> !UnwindSafe for FuncEnv<'a>
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