| 109 | #[derive(Clone)] |
| 110 | #[cfg_attr(feature = "debug", derive(core::fmt::Debug))] |
| 111 | pub struct Function { |
| 112 | pub(crate) item: StoreItem, |
| 113 | pub(crate) module_addr: ModuleInstanceAddr, |
| 114 | pub(crate) addr: u32, |
| 115 | pub(crate) ty: Arc<FuncType>, |
| 116 | } |
| 117 | |
| 118 | /// A typed function handle |
| 119 | #[cfg_attr(feature = "debug", derive(core::fmt::Debug))] |
no outgoing calls
no test coverage detected