(&self, store: &'a Store)
| 187 | |
| 188 | #[inline] |
| 189 | fn instance<'a>(&self, store: &'a Store) -> Result<&'a MemoryInstance> { |
| 190 | self.0.validate_store(store)?; |
| 191 | Ok(store.state.get_mem(self.0.addr)) |
| 192 | } |
| 193 | |
| 194 | #[inline] |
| 195 | fn instance_mut<'a>(&self, store: &'a mut Store) -> Result<&'a mut MemoryInstance> { |
no test coverage detected