(store_id: usize, addr: Addr)
| 21 | impl StoreItem { |
| 22 | #[inline] |
| 23 | pub(crate) const fn new(store_id: usize, addr: Addr) -> Self { |
| 24 | Self { store_id, addr } |
| 25 | } |
| 26 | |
| 27 | #[inline] |
| 28 | pub(crate) fn validate_store(&self, store: &Store) -> Result<(), Trap> { |