(
self: Pin<&mut Self>,
)
| 1523 | } |
| 1524 | |
| 1525 | pub(crate) fn tables_mut( |
| 1526 | self: Pin<&mut Self>, |
| 1527 | ) -> &mut TryPrimaryMap<DefinedTableIndex, (TableAllocationIndex, Table)> { |
| 1528 | // SAFETY: see `store_mut` above. |
| 1529 | unsafe { &mut self.get_unchecked_mut().tables } |
| 1530 | } |
| 1531 | |
| 1532 | #[cfg(feature = "wmemcheck")] |
| 1533 | pub(super) fn wmemcheck_state_mut(self: Pin<&mut Self>) -> &mut Option<Wmemcheck> { |
no outgoing calls
no test coverage detected