(&self, f: &mut core::fmt::Formatter<'_>)
| 54 | #[cfg(feature = "debug")] |
| 55 | impl core::fmt::Debug for Store { |
| 56 | fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { |
| 57 | f.debug_struct("Store") |
| 58 | .field("id", &self.id) |
| 59 | .field("module_instances", &self.module_instances) |
| 60 | .field("engine", &self.engine) |
| 61 | .finish() |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | impl Store { |