pub enum FuncInst {
Local(LocalFuncInst),
Imported(ImportedFuncInst),
}
Variants§
Local(LocalFuncInst)
Imported(ImportedFuncInst)
Implementations§
source§impl FuncInst
impl FuncInst
pub fn ty(&self) -> usize
pub fn try_into_local(&self) -> Option<&LocalFuncInst>
pub fn try_into_imported(&self) -> Option<&ImportedFuncInst>
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for FuncInst
impl Send for FuncInst
impl Sync for FuncInst
impl Unpin for FuncInst
impl UnwindSafe for FuncInst
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