(&self)
| 88 | |
| 89 | impl LinearMemory for LazyLinearMemory { |
| 90 | fn len(&self) -> usize { |
| 91 | self.with_inner(|inner| inner.len()) |
| 92 | } |
| 93 | |
| 94 | fn grow_to(&mut self, new_len: usize) -> Result<(), crate::Trap> { |
| 95 | self.try_with_inner_mut(|inner| inner.grow_to(new_len))? |
nothing calls this directly
no test coverage detected