(&self, f: &mut Formatter<'_>)
| 420 | |
| 421 | impl Debug for ExtensionTypeRegistration { |
| 422 | fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result { |
| 423 | f.debug_struct("DefaultExtensionTypeRegistration") |
| 424 | .field("type_name", &self.name) |
| 425 | .finish() |
| 426 | } |
| 427 | } |
| 428 | |
| 429 | /// An [`ExtensionTypeRegistry`] that uses in memory [`HashMap`]s. |