(&self, f: &mut core::fmt::Formatter<'_>)
| 167 | #[cfg(feature = "debug")] |
| 168 | impl core::fmt::Debug for LazyLinearMemory { |
| 169 | fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { |
| 170 | f.debug_struct("LazyLinearMemory") |
| 171 | .field("ty", &self.ty) |
| 172 | .field("materialized", &self.inner.borrow().is_some()) |
| 173 | .finish() |
| 174 | } |
| 175 | } |