Iterates all the config extension entries yielding their prefix and their [ExtensionOptions] implementation.
(
&self,
)
| 1818 | /// Iterates all the config extension entries yielding their prefix and their |
| 1819 | /// [ExtensionOptions] implementation. |
| 1820 | pub fn iter( |
| 1821 | &self, |
| 1822 | ) -> impl Iterator<Item = (&'static str, &Box<dyn ExtensionOptions>)> { |
| 1823 | self.0.iter().map(|(k, v)| (*k, &v.0)) |
| 1824 | } |
| 1825 | } |
| 1826 | |
| 1827 | #[derive(Debug)] |