(&self, f: &mut fmt::Formatter<'_>)
| 164 | |
| 165 | impl fmt::Debug for Module { |
| 166 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { |
| 167 | f.debug_struct("Module") |
| 168 | .field("name", &self.name()) |
| 169 | .finish_non_exhaustive() |
| 170 | } |
| 171 | } |
| 172 | |
| 173 | impl fmt::Debug for ModuleInner { |