(&self)
| 1742 | /// Gets the WebAssembly `funcref` value |
| 1743 | #[inline] |
| 1744 | pub fn get_funcref(&self) -> *mut c_void { |
| 1745 | let addr = unsafe { usize::from_le(self.funcref.addr()) }; |
| 1746 | core::ptr::with_exposed_provenance_mut(addr) |
| 1747 | } |
| 1748 | |
| 1749 | /// Gets the WebAssembly `externref` value |
| 1750 | #[inline] |