(&self, f: &mut fmt::Formatter<'_>)
| 237 | |
| 238 | impl fmt::Debug for ModuleInfo { |
| 239 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { |
| 240 | f.debug_struct("ModuleInfo") |
| 241 | .field("module_def", &self.module_def) |
| 242 | .field("owner_identity", &self.owner_identity) |
| 243 | .field("database_identity", &self.database_identity) |
| 244 | .field("module_hash", &self.module_hash) |
| 245 | .finish() |
| 246 | } |
| 247 | } |
| 248 | |
| 249 | #[derive(Debug)] |