Access the underlying data owned by this `Store`. Same as [`Store::data_mut`](crate::Store::data_mut)
(&mut self)
| 2129 | /// |
| 2130 | /// Same as [`Store::data_mut`](crate::Store::data_mut) |
| 2131 | pub fn data_mut(&mut self) -> &mut T { |
| 2132 | self.store.data_mut() |
| 2133 | } |
| 2134 | |
| 2135 | /// Returns the underlying [`Engine`] this store is connected to. |
| 2136 | pub fn engine(&self) -> &Engine { |
no outgoing calls