(&self, store: &StoreOpaque)
| 1245 | } |
| 1246 | |
| 1247 | pub(crate) fn comes_from_same_store(&self, store: &StoreOpaque) -> bool { |
| 1248 | self.store == store.id() |
| 1249 | } |
| 1250 | |
| 1251 | /// Attempts to extract a typed object from this `Func` through which the |
| 1252 | /// function can be called. |
no test coverage detected