(&self, store: &'a mut Store)
| 193 | |
| 194 | #[inline] |
| 195 | fn instance_mut<'a>(&self, store: &'a mut Store) -> Result<&'a mut MemoryInstance> { |
| 196 | self.0.validate_store(store)?; |
| 197 | Ok(store.state.get_mem_mut(self.0.addr)) |
| 198 | } |
| 199 | |
| 200 | /// Returns the raw memory byte length. |
| 201 | pub fn len(&self, store: &Store) -> Result<usize> { |
no test coverage detected