(&self, store: &'a mut Store, position: u64)
| 182 | /// Available with the `std` feature enabled. |
| 183 | #[cfg(feature = "std")] |
| 184 | pub fn cursor_at<'a>(&self, store: &'a mut Store, position: u64) -> Result<MemoryCursor<'a>> { |
| 185 | Ok(MemoryCursor::new(self.instance_mut(store)?, position)) |
| 186 | } |
| 187 | |
| 188 | #[inline] |
| 189 | fn instance<'a>(&self, store: &'a Store) -> Result<&'a MemoryInstance> { |