MCPcopy Create free account
hub / github.com/apache/datafusion / iter

Method iter

datafusion/common/src/config.rs:1820–1824  ·  view source on GitHub ↗

Iterates all the config extension entries yielding their prefix and their [ExtensionOptions] implementation.

(
        &self,
    )

Source from the content-addressed store, hash-verified

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)]

Callers 5

try_fromMethod · 0.45
fromMethod · 0.45
entriesMethod · 0.45
parquet_table_encryptionFunction · 0.45

Calls 1

mapMethod · 0.45

Tested by 2

parquet_table_encryptionFunction · 0.36