pub enum FuncInst<T> {
WasmFunc(WasmFuncInst),
HostFunc(HostFuncInst<T>),
}
Variants§
WasmFunc(WasmFuncInst)
HostFunc(HostFuncInst<T>)
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for FuncInst<T>
impl<T> RefUnwindSafe for FuncInst<T>
impl<T> Send for FuncInst<T>
impl<T> Sync for FuncInst<T>
impl<T> Unpin for FuncInst<T>
impl<T> UnwindSafe for FuncInst<T>
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