| 17 | // NB the repr(transparent) here is for the same reason as above. |
| 18 | #[repr(transparent)] |
| 19 | pub struct StoreContextMut<'a, T: 'static>(pub(crate) &'a mut StoreInner<T>); |
| 20 | |
| 21 | /// A trait used to get shared access to a [`Store`] in Wasmtime. |
| 22 | /// |
no outgoing calls
no test coverage detected